layouts: load mermaid.js on pages that use it
publish / build-and-publish (push) Successful in 4s

This commit is contained in:
2026-04-20 19:42:44 +00:00
parent 61d87e6b51
commit 1eb8de22e1
+7
View File
@@ -0,0 +1,7 @@
{{- if .Store.Get "hasMermaid" }}
<script type="module">
import mermaid from "https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs";
const theme = document.body.classList.contains("dark") ? "dark" : "default";
mermaid.initialize({ startOnLoad: true, theme });
</script>
{{- end }}