diff --git a/docSite/go.mod b/docSite/go.mod
index 6119b4199..01e9b9153 100644
--- a/docSite/go.mod
+++ b/docSite/go.mod
@@ -4,5 +4,5 @@ go 1.21
require (
github.com/colinwilson/lotusdocs v0.1.0 // indirect
- github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20003 // indirect
+ github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 // indirect
)
diff --git a/docSite/go.sum b/docSite/go.sum
index 1541bb6f5..5b1325313 100644
--- a/docSite/go.sum
+++ b/docSite/go.sum
@@ -10,5 +10,8 @@ github.com/colinwilson/lotusdocs v0.1.0 h1:oTC8pAYQp9XDNaUwE4SEY+id3ByNELxIIFrkt
github.com/colinwilson/lotusdocs v0.1.0/go.mod h1:9zu2REJDi+zdPRcR5/bRYSUR7gkNF4NQLvV38SEoCP8=
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20003 h1:pt/JGVD5YYRsVVijOHPZI6YKTUvbR4e0hgV9B0S6rbI=
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20003/go.mod h1:mvM05r93HiefwoaxQTaYiJxtJAhTebwQtU1Xh/J+Okk=
+github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 h1:SmpwwN3DNzJWbV+IT8gaFu07ENUFpCvKou5BHYUKuVs=
+github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200/go.mod h1:kx8MBj9T7SFR8ZClWvKZPmmUxBaltkoXvnWlZZcSnYA=
github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000/go.mod h1:mFberT6ZtcchrsDtfvJM7aAH2bDKLdOnruUHl0hlapI=
github.com/twbs/bootstrap v5.3.0+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
+github.com/twbs/bootstrap v5.3.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
diff --git a/docSite/hugo.toml b/docSite/hugo.toml
index a6241df73..80694c056 100644
--- a/docSite/hugo.toml
+++ b/docSite/hugo.toml
@@ -109,6 +109,11 @@ defaultContentLanguage = 'zh-cn'
listDescTrunc = 100 # Number of characters by which to truncate the list card description
+ # Link behaviour
+ intLinkTooltip = true # Enable a tooltip for internal links that displays info about the destination? default false
+ # extLinkNewTab = false # Open external links in a new Tab? default true
+ # logoLinkURL = "" # Set a custom URL destination for the top header logo link.
+
[params.flexsearch] # Parameters for FlexSearch
# enabled = true
# tokenize = "full"
diff --git a/docSite/layouts/docs/single.html b/docSite/layouts/docs/single.html
index 0ea8deed2..f0195b906 100644
--- a/docSite/layouts/docs/single.html
+++ b/docSite/layouts/docs/single.html
@@ -11,9 +11,9 @@
{{ end -}}
{{ if .Page.Store.Get "hasMermaid" }}
- {{ $mermaid := resources.Get (printf "%s/%s" ($.Scratch.Get "pathName") "js/mermaid.js") }}
+ {{ $mermaid := resources.Get (printf "%s/%s" ($.Scratch.Get "pathName") "js/mermaid.min.js") }}
{{ if hugo.IsProduction }}
- {{ $mermaid = $mermaid | minify | fingerprint "sha384" }}
+ {{ $mermaid = $mermaid | fingerprint "sha384" }}
{{ end }}