Files
blog/layouts/partials/extend_footer.html
T
gnoc 1eb8de22e1
publish / build-and-publish (push) Successful in 4s
layouts: load mermaid.js on pages that use it
2026-04-20 19:42:44 +00:00

8 lines
299 B
HTML

{{- 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 }}