1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/mermaid.html

11 lines
395 B
HTML
Raw Permalink Normal View History

{{ $mermaidData := dict "theme" "default" }}
{{ $data := dict "code" .Inner "mermaid" $mermaidData }}
<figure class="mermaid">
2021-12-27 11:01:18 +00:00
<img src="https://mermaid.ink/img/{{ $data | jsonify | base64Encode }}" referrerpolicy="no-referrer" decoding="async" loading="lazy" alt='{{ .Get "caption" }}' />
2018-06-21 13:53:06 +01:00
<figcaption class="text-center">
<small>{{ .Get "caption" }}</small>
</figcaption>
</figure>