{{/* cSpell:ignore docsearch markmap plantuml katex hasmermaid */ -}}
{{ if .Site.Params.markmap.enable -}}
{{ end -}}
{{ if .Site.Params.plantuml.enable -}}
{{ end -}}
{{ $jsBs := resources.Get "vendor/bootstrap/dist/js/bootstrap.bundle.js" -}}
{{ $jsBase := resources.Get "js/base.js" -}}
{{ $jsSearch := resources.Get "js/search.js" | resources.ExecuteAsTemplate "js/search.js" .Site.Home -}}
{{ $jsMarkmap := resources.Get "js/markmap.js" | resources.ExecuteAsTemplate "js/markmap.js" . -}}
{{ $jsPlantuml := resources.Get "js/plantuml.js" | resources.ExecuteAsTemplate "js/plantuml.js" . -}}
{{ $jsDrawio := resources.Get "js/drawio.js" | resources.ExecuteAsTemplate "js/drawio.js" . -}}
{{ if .Site.Params.offlineSearch -}}
{{ $jsSearch = resources.Get "js/offline-search.js" -}}
{{ end -}}
{{ $jsArray := slice $jsBs $jsBase $jsSearch $jsPlantuml $jsMarkmap $jsDrawio -}}
{{ if .Page.Store.Get "hasmermaid" -}}
{{ partial "scripts/mermaid.html" . -}}
{{ end -}}
{{ if .Page.Store.Get "hasMath" -}}
{{ partial "scripts/katex.html" . -}}
{{ end -}}
{{- $darkMode := partialCached "dark-mode-config.html" "dark-mode-global" -}}
{{ if $darkMode.enable -}}
{{ $jsArray = $jsArray | append (resources.Get "js/dark-mode.js") -}}
{{ end -}}
{{ if not (.Param "ui.scrollSpy.disable") -}}
{{ $jsScrollSpyPatch := resources.Get "js/scrollspy-patch.js" -}}
{{ $jsArray = $jsArray | append $jsScrollSpyPatch -}}
{{ end -}}
{{ $js := $jsArray | resources.Concat "js/main.js" -}}
{{ if hugo.IsProduction -}}
{{ $js = $js | minify | fingerprint -}}
{{ else -}}
{{ end -}}
{{ if .Site.Params.prism_syntax_highlighting -}}
{{ else if ( not .Site.Params.disable_click2copy_chroma ) -}}
{{ $c2cJS := resources.Get "js/click-to-copy.js" -}}
{{ if hugo.IsProduction -}}
{{ $c2cJS = $c2cJS | minify | fingerprint -}}
{{ end -}}
{{ end -}}
{{ if and .Site.Params.search (isset .Site.Params.search "algolia") -}}
{{ template "algolia/scripts" .Site.Params.search.algolia -}}
{{ end -}}
{{ partial "hooks/body-end.html" . -}}
{{ define "algolia/scripts" -}}
{{ end -}}