Files
MitseaBlog/themes/hugo-theme-stack/layouts/partials/article/components/mermaid.html
2026-01-19 11:22:22 +08:00

9 lines
238 B
HTML

{{ if .Store.Get "hasMermaid" }}
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11.12.2/+esm';
mermaid.initialize({
startOnLoad: true,
theme: 'neutral',
});
</script>
{{ end }}