9 lines
238 B
HTML
9 lines
238 B
HTML
{{ if .Store.Get "hasMermaid" }}
|
|||
|
|
<script type="module">
|
||
|
|
import mermaid from 'https://cdn.jsdelivr.net/npm/[email protected]/+esm';
|
||
|
|
mermaid.initialize({
|
||
|
|
startOnLoad: true,
|
||
|
|
theme: 'neutral',
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
{{ end }}
|