mirror of https://github.com/onweru/compose.git

weru
30.45.2023 a2ddf2b329392fd368d23648b23aaecfc6f05f7d
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 }}