1
2
3
4
5
6
7
8
9
10
11
12
13
|
| {{ if in .Content "mermaid" }}
| <input type="checkbox" class="mermaid-theme">
| <script type="module">
| import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
|
| function initialize_mermaid(theme = 'base') {
| mermaid.initialize({ startOnLoad: true, theme: theme });
| }
|
| initialize_mermaid();
| </script>
| {{ end }}
|
|