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

Ray
11.38.2023 fa22efc00a50fbd9758ec39e31cef1d7f8884b89
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 }}