mirror of
https://github.com/imfing/hextra.git
synced 2025-07-03 01:27:20 -04:00
Compare commits
13 Commits
v0.8.5
...
f034773336
Author | SHA1 | Date | |
---|---|---|---|
f034773336 | |||
86a1f3fd96 | |||
081ad8b84f | |||
7593ef4ae4 | |||
4c4f43779c | |||
ff85e6951d | |||
ec37876f4d | |||
b70d729283 | |||
f65aca556d | |||
7b7eb0f1f3 | |||
80fae9f86d | |||
1358c5b945 | |||
b4d292010b |
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -17,6 +17,8 @@ assignees: ''
|
|||||||
2.
|
2.
|
||||||
3.
|
3.
|
||||||
|
|
||||||
|
<!-- Provide a minimal example or link to a repository that reproduces the bug -->
|
||||||
|
|
||||||
**Expected Behavior**
|
**Expected Behavior**
|
||||||
|
|
||||||
<!-- What should have happened? -->
|
<!-- What should have happened? -->
|
||||||
|
15
.github/workflows/pages.yml
vendored
15
.github/workflows/pages.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
HUGO_VERSION: 0.131.0
|
HUGO_VERSION: 0.136.5
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -41,10 +41,10 @@ jobs:
|
|||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: '1.22'
|
go-version: '1.23'
|
||||||
- name: Setup Pages
|
- name: Setup Pages
|
||||||
id: pages
|
id: pages
|
||||||
uses: actions/configure-pages@v4
|
uses: actions/configure-pages@v5
|
||||||
- name: Setup Hugo
|
- name: Setup Hugo
|
||||||
run: |
|
run: |
|
||||||
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
|
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
|
||||||
@ -54,11 +54,12 @@ jobs:
|
|||||||
# For maximum backward compatibility with Hugo modules
|
# For maximum backward compatibility with Hugo modules
|
||||||
HUGO_ENVIRONMENT: production
|
HUGO_ENVIRONMENT: production
|
||||||
HUGO_ENV: production
|
HUGO_ENV: production
|
||||||
|
# Use the latest release of the theme to build exampleSite
|
||||||
run: |
|
run: |
|
||||||
hugo \
|
cd exampleSite && rm go.mod
|
||||||
--minify \
|
hugo mod init github.com/imfing/hextra/exampleSite
|
||||||
--themesDir=../.. --source=exampleSite \
|
hugo mod get -u github.com/imfing/hextra
|
||||||
--baseURL "${{ steps.pages.outputs.base_url }}/"
|
hugo --minify --baseURL "${{ steps.pages.outputs.base_url }}/"
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v3
|
uses: actions/upload-pages-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
- **响应式布局和深色模式支持** - 在任何设备上看起来都足够美观, 无论是手机, 平板电脑或者电脑. 深色模式的支持使 Hextra 可以应对各种照明环境.
|
- **响应式布局和深色模式支持** - 在任何设备上看起来都足够美观, 无论是手机, 平板电脑或者电脑. 深色模式的支持使 Hextra 可以应对各种照明环境.
|
||||||
- **快速且轻量** - 由 Hugo 强力支持, Hugo 是一个快如闪电的静态站点生成器, 这一切都只需一个可执行文件, Hextra 始终保持最小化, 无需 Javascript 或者 Node.js.
|
- **快速且轻量** - 由 Hugo 强力支持, Hugo 是一个快如闪电的静态站点生成器, 这一切都只需一个可执行文件, Hextra 始终保持最小化, 无需 Javascript 或者 Node.js.
|
||||||
- **全文搜索** - 集成了 Flexsearch 的全文搜索, 无需额外的配置.
|
- **全文搜索** - 集成了 Flexsearch 的全文搜索, 无需额外的配置.
|
||||||
- **网站中的瑞士军刀** - Markdown, 代码高亮, LaTex 数学公式, diagrams 图表和 Shortcodes 都可以用于丰富你的内容. 目录, 面包屑导航, 分页, 侧边栏等均由 Hextra 自动生成。
|
- **功能齐全** - Markdown, 代码高亮, LaTex 数学公式, diagrams 图表和 Shortcodes 都可以用于丰富你的内容. 目录, 面包屑导航, 分页, 侧边栏等均由 Hextra 自动生成。
|
||||||
- **多语言和 SEO Ready** - Hugo 的多语言模式使得构建多语言网站更简单. 具有 SEO tags, Open Graph, 和 Twitter Cards 等诸多开箱即用的功能.
|
- **多语言和 SEO Ready** - Hugo 的多语言模式使得构建多语言网站更简单. 具有 SEO tags, Open Graph, 和 Twitter Cards 等诸多开箱即用的功能.
|
||||||
|
|
||||||
## 快速开始
|
## 快速开始
|
||||||
|
@ -1,8 +1,20 @@
|
|||||||
document.addEventListener("DOMContentLoaded", function () {
|
document.addEventListener("DOMContentLoaded", function () {
|
||||||
scrollToActiveItem();
|
restoreSidebarPosition();
|
||||||
enableCollapsibles();
|
enableCollapsibles();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function debounce(func, wait) {
|
||||||
|
let timeout;
|
||||||
|
return function executedFunction(...args) {
|
||||||
|
const later = () => {
|
||||||
|
clearTimeout(timeout);
|
||||||
|
func(...args);
|
||||||
|
};
|
||||||
|
clearTimeout(timeout);
|
||||||
|
timeout = setTimeout(later, wait);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
function enableCollapsibles() {
|
function enableCollapsibles() {
|
||||||
const buttons = document.querySelectorAll(".hextra-sidebar-collapsible-button");
|
const buttons = document.querySelectorAll(".hextra-sidebar-collapsible-button");
|
||||||
buttons.forEach(function (button) {
|
buttons.forEach(function (button) {
|
||||||
@ -16,21 +28,31 @@ function enableCollapsibles() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function scrollToActiveItem() {
|
function saveSidebarPosition(scrollPosition) {
|
||||||
const sidebarScrollbar = document.querySelector("aside.sidebar-container > .hextra-scrollbar");
|
const currentPosition = sessionStorage.getItem('sidebarScrollPosition');
|
||||||
const activeItems = document.querySelectorAll(".sidebar-active-item");
|
if (currentPosition === null || parseInt(currentPosition) !== scrollPosition) {
|
||||||
const visibleActiveItem = Array.from(activeItems).find(function (activeItem) {
|
sessionStorage.setItem('sidebarScrollPosition', scrollPosition);
|
||||||
return activeItem.getBoundingClientRect().height > 0;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!visibleActiveItem) {
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const yOffset = visibleActiveItem.clientHeight;
|
|
||||||
const yDistance = visibleActiveItem.getBoundingClientRect().top - sidebarScrollbar.getBoundingClientRect().top;
|
|
||||||
sidebarScrollbar.scrollTo({
|
|
||||||
behavior: "instant",
|
|
||||||
top: yDistance - yOffset
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function restoreSidebarPosition() {
|
||||||
|
const sidebarScrollbar = document.querySelector("aside.sidebar-container > .hextra-scrollbar");
|
||||||
|
if (sidebarScrollbar) {
|
||||||
|
const savedPosition = sessionStorage.getItem('sidebarScrollPosition');
|
||||||
|
|
||||||
|
if (savedPosition !== null) {
|
||||||
|
sidebarScrollbar.scrollTo({
|
||||||
|
top: parseInt(savedPosition),
|
||||||
|
behavior: 'instant'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const debouncedSave = debounce((position) => {
|
||||||
|
saveSidebarPosition(position);
|
||||||
|
}, 150);
|
||||||
|
|
||||||
|
sidebarScrollbar.addEventListener('scroll', function() {
|
||||||
|
debouncedSave(this.scrollTop);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
{{- $pages := where .Site.Pages "Kind" "in" (slice "page" "section") -}}
|
{{- $pages := where .Site.Pages "Kind" "in" (slice "page" "section") -}}
|
||||||
{{- $pages = where $pages "Params.excludeSearch" "!=" true -}}
|
{{- $pages = where $pages "Params.excludeSearch" "!=" true -}}
|
||||||
|
{{- $pages = where $pages "Content" "!=" "" -}}
|
||||||
|
|
||||||
{{- $output := dict -}}
|
{{- $output := dict -}}
|
||||||
|
|
||||||
|
1754
assets/lib/mermaid/mermaid.min.js
vendored
1754
assets/lib/mermaid/mermaid.min.js
vendored
File diff suppressed because one or more lines are too long
@ -12,6 +12,19 @@ Open source projects powered by Hextra
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
{{< cards >}}
|
{{< cards >}}
|
||||||
|
{{< card
|
||||||
|
link="https://github.com/jonaspleyer/cellular_raza"
|
||||||
|
title="cellular_raza"
|
||||||
|
image="https://github.com/user-attachments/assets/f24c6455-b70a-419b-b025-e3d60101b673"
|
||||||
|
imageStyle="object-fit:cover; aspect-ratio:16/9;"
|
||||||
|
>}}
|
||||||
|
|
||||||
|
{{< card
|
||||||
|
link="https://github.com/mightymoud/sidekick"
|
||||||
|
title="Sidekick"
|
||||||
|
image="https://github.com/user-attachments/assets/4ae2a9d7-77b6-42eb-a9d7-5c4599f0f812"
|
||||||
|
imageStyle="object-fit:cover; aspect-ratio:16/9;"
|
||||||
|
>}}
|
||||||
|
|
||||||
{{< card
|
{{< card
|
||||||
link="https://github.com/welding-torch/installc"
|
link="https://github.com/welding-torch/installc"
|
||||||
|
@ -4,11 +4,11 @@ changeTheme: "Darstellung ändern"
|
|||||||
copyCode: "Code kopieren"
|
copyCode: "Code kopieren"
|
||||||
copyright: "© 2024 Hextra Project."
|
copyright: "© 2024 Hextra Project."
|
||||||
dark: "Dunkel"
|
dark: "Dunkel"
|
||||||
editThisPage: "Diese Seite auf Github bearbeiten →"
|
editThisPage: "Diese Seite auf GitHub bearbeiten →"
|
||||||
lastUpdated: "Zuletzt aktualisiert am"
|
lastUpdated: "Zuletzt aktualisiert am"
|
||||||
light: "Hell"
|
light: "Hell"
|
||||||
noResultsFound: "Keine Ergebnisse gefunden."
|
noResultsFound: "Keine Ergebnisse gefunden."
|
||||||
onThisPage: "Auf dieser Seite"
|
onThisPage: "Auf dieser Seite"
|
||||||
poweredBy: "Unterstützt durch Hextra"
|
poweredBy: "Unterstützt durch Hextra"
|
||||||
readMore: "Mehr lesen →"
|
readMore: "Mehr lesen →"
|
||||||
searchPlaceholder: "Suchen..."
|
searchPlaceholder: "Suchen..."
|
||||||
|
@ -3,7 +3,7 @@ changeLanguage: "언어변경"
|
|||||||
changeTheme: "테마변경"
|
changeTheme: "테마변경"
|
||||||
copyright: "© 2024 Hextra Project."
|
copyright: "© 2024 Hextra Project."
|
||||||
dark: "어두운 테마"
|
dark: "어두운 테마"
|
||||||
editThisPage: "Github에서 편집하기 →"
|
editThisPage: "GitHub에서 편집하기 →"
|
||||||
lastUpdated: "마지막 수정일자"
|
lastUpdated: "마지막 수정일자"
|
||||||
light: "밝은 테마"
|
light: "밝은 테마"
|
||||||
noResultsFound: "결과 없음"
|
noResultsFound: "결과 없음"
|
||||||
|
14
i18n/ru.yaml
Normal file
14
i18n/ru.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
backToTop: 'Прокрутить к началу'
|
||||||
|
changeLanguage: 'Изменить язык'
|
||||||
|
changeTheme: 'Изменить тему'
|
||||||
|
copyCode: 'Скопировать код'
|
||||||
|
copyright: '2024 Проект Hextra.'
|
||||||
|
dark: 'Темная'
|
||||||
|
editThisPage: 'Отредактировать страницу на GitHub →'
|
||||||
|
lastUpdated: 'Последнее обновление'
|
||||||
|
light: 'Светлая'
|
||||||
|
noResultsFound: 'Ничего не найдено.'
|
||||||
|
onThisPage: 'На этой странице'
|
||||||
|
poweredBy: 'При поддержке Hextra'
|
||||||
|
readMore: 'Читать далее →'
|
||||||
|
searchPlaceholder: 'Поиск...'
|
@ -4,11 +4,11 @@ changeTheme: "Змінити тему"
|
|||||||
copyCode: "Скопіювати код"
|
copyCode: "Скопіювати код"
|
||||||
copyright: "2024 Проєкт Hextra."
|
copyright: "2024 Проєкт Hextra."
|
||||||
dark: "Темна"
|
dark: "Темна"
|
||||||
editThisPage: "Редагувати цю сторінку на Github →"
|
editThisPage: "Редагувати цю сторінку на GitHub →"
|
||||||
lastUpdated: "Востаннє оновлено"
|
lastUpdated: "Востаннє оновлено"
|
||||||
light: "Світла"
|
light: "Світла"
|
||||||
noResultsFound: "Не знайдено результатів"
|
noResultsFound: "Не знайдено результатів"
|
||||||
onThisPage: "На цій сторінці"
|
onThisPage: "На цій сторінці"
|
||||||
poweredBy: "Працює завдяки Hextra"
|
poweredBy: "Працює завдяки Hextra"
|
||||||
readMore: "Читати більше →"
|
readMore: "Читати більше →"
|
||||||
searchPlaceholder: "Пошук..."
|
searchPlaceholder: "Пошук..."
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
{{ else -}}
|
{{ else -}}
|
||||||
<meta name="robots" content="noindex, nofollow" />
|
<meta name="robots" content="noindex, nofollow" />
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ partialCached "favicons.html" . }}
|
{{ partialCached "favicons.html" . -}}
|
||||||
<title>
|
<title>
|
||||||
{{- if .IsHome -}}
|
{{- if .IsHome -}}
|
||||||
{{ .Site.Title -}}
|
{{ .Site.Title -}}
|
||||||
@ -17,17 +17,17 @@
|
|||||||
</title>
|
</title>
|
||||||
<meta name="description" content="{{ partial "utils/page-description.html" . }}" />
|
<meta name="description" content="{{ partial "utils/page-description.html" . }}" />
|
||||||
|
|
||||||
{{ with .Params.canonical }}
|
{{- with .Params.canonical -}}
|
||||||
<link rel="canonical" href="{{ . }}" itemprop="url" />
|
<link rel="canonical" href="{{ . }}" itemprop="url" />
|
||||||
{{ else }}
|
{{- else -}}
|
||||||
<link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
|
<link rel="canonical" href="{{ .Permalink }}" itemprop="url" />
|
||||||
{{ end }}
|
{{- end -}}
|
||||||
|
|
||||||
{{ partial "opengraph.html" . }}
|
{{- partial "opengraph.html" . -}}
|
||||||
{{ template "_internal/schema.html" . -}}
|
{{- template "_internal/schema.html" . -}}
|
||||||
{{ template "_internal/twitter_cards.html" . -}}
|
{{- template "_internal/twitter_cards.html" . -}}
|
||||||
|
|
||||||
{{ partialCached "head-css.html" . }}
|
{{- partialCached "head-css.html" . -}}
|
||||||
|
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
{{/* Display icon menu item */}}
|
{{/* Display icon menu item */}}
|
||||||
{{- if .Params.icon -}}
|
{{- if .Params.icon -}}
|
||||||
{{- $rel := cond (eq .Params.icon "mastodon") "noreferer me" "noreferer" }}
|
{{- $rel := cond (eq .Params.icon "mastodon") "noreferrer me" "noreferrer" }}
|
||||||
<a class="hx-p-2 hx-text-current" {{ if $external }}target="_blank" rel="{{ $rel }}"{{ end }} href="{{ $link }}" title="{{ or (T .Identifier) .Name | safeHTML }}">
|
<a class="hx-p-2 hx-text-current" {{ if $external }}target="_blank" rel="{{ $rel }}"{{ end }} href="{{ $link }}" title="{{ or (T .Identifier) .Name | safeHTML }}">
|
||||||
{{- partial "utils/icon.html" (dict "name" .Params.icon "attributes" "height=24") -}}
|
{{- partial "utils/icon.html" (dict "name" .Params.icon "attributes" "height=24") -}}
|
||||||
<span class="hx-sr-only">{{ or (T .Identifier) .Name | safeHTML }}</span>
|
<span class="hx-sr-only">{{ or (T .Identifier) .Name | safeHTML }}</span>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
<a
|
<a
|
||||||
title="{{ or (T .Identifier) .Name | safeHTML }}"
|
title="{{ or (T .Identifier) .Name | safeHTML }}"
|
||||||
href="{{ $link }}"
|
href="{{ $link }}"
|
||||||
{{ if $external }}target="_blank" rel="noreferer"{{ end }}
|
{{ if $external }}target="_blank" rel="noreferrer"{{ end }}
|
||||||
class="hx-text-sm contrast-more:hx-text-gray-700 contrast-more:dark:hx-text-gray-100 hx-relative -hx-ml-2 hx-hidden hx-whitespace-nowrap hx-p-2 md:hx-inline-block {{ $activeClass }}"
|
class="hx-text-sm contrast-more:hx-text-gray-700 contrast-more:dark:hx-text-gray-100 hx-relative -hx-ml-2 hx-hidden hx-whitespace-nowrap hx-p-2 md:hx-inline-block {{ $activeClass }}"
|
||||||
>
|
>
|
||||||
<span class="hx-text-center">{{ or (T .Identifier) .Name | safeHTML }}</span>
|
<span class="hx-text-center">{{ or (T .Identifier) .Name | safeHTML }}</span>
|
||||||
|
@ -160,7 +160,7 @@
|
|||||||
hx-text-gray-500 hover:hx-bg-gray-100 hover:hx-text-gray-900 contrast-more:hx-border contrast-more:hx-border-transparent contrast-more:hx-text-gray-900 contrast-more:hover:hx-border-gray-900 dark:hx-text-neutral-400 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50 contrast-more:dark:hx-text-gray-50 contrast-more:dark:hover:hx-border-gray-50
|
hx-text-gray-500 hover:hx-bg-gray-100 hover:hx-text-gray-900 contrast-more:hx-border contrast-more:hx-border-transparent contrast-more:hx-text-gray-900 contrast-more:hover:hx-border-gray-900 dark:hx-text-neutral-400 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50 contrast-more:dark:hx-text-gray-50 contrast-more:dark:hover:hx-border-gray-50
|
||||||
{{- end -}}"
|
{{- end -}}"
|
||||||
href="{{ .link }}"
|
href="{{ .link }}"
|
||||||
{{ if $external }}target="_blank" rel="noreferer"{{ end }}
|
{{ if $external }}target="_blank" rel="noreferrer"{{ end }}
|
||||||
>
|
>
|
||||||
{{- .title -}}
|
{{- .title -}}
|
||||||
{{- with .context }}
|
{{- with .context }}
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
{{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
|
{{- $editURL = urls.JoinPath $editURL $sourceDir $path -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
<a class="hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50" href="{{ $editURL }}" target="_blank" rel="noreferer">{{ $editThisPage }}</a>
|
<a class="hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50" href="{{ $editURL }}" target="_blank" rel="noreferrer">{{ $editThisPage }}</a>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{/* Scroll To Top */}}
|
{{/* Scroll To Top */}}
|
||||||
<button aria-hidden="true" id="backToTop" onClick="scrollUp();" class="hx-transition-all hx-duration-75 hx-opacity-0 hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50">
|
<button aria-hidden="true" id="backToTop" onClick="scrollUp();" class="hx-transition-all hx-duration-75 hx-opacity-0 hx-text-xs hx-font-medium hx-text-gray-500 hover:hx-text-gray-900 dark:hx-text-gray-400 dark:hover:hx-text-gray-100 contrast-more:hx-text-gray-800 contrast-more:dark:hx-text-gray-50">
|
||||||
|
@ -25,4 +25,4 @@ tasks:
|
|||||||
- curl -o assets/lib/katex/katex.min.css https://cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css
|
- curl -o assets/lib/katex/katex.min.css https://cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css
|
||||||
- curl -o assets/lib/katex/auto-render.min.js https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/auto-render.min.js
|
- curl -o assets/lib/katex/auto-render.min.js https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/auto-render.min.js
|
||||||
- curl -o assets/lib/katex/mhchem.min.js https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/mhchem.min.js
|
- curl -o assets/lib/katex/mhchem.min.js https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/mhchem.min.js
|
||||||
- curl -o assets/lib/mermaid/mermaid.min.js https://cdn.jsdelivr.net/npm/mermaid@10.9.0/dist/mermaid.min.js
|
- curl -o assets/lib/mermaid/mermaid.min.js https://cdn.jsdelivr.net/npm/mermaid@11.3.0/dist/mermaid.min.js
|
||||||
|
Reference in New Issue
Block a user