LoveIt/layouts/shortcodes/mermaid.html

7 lines
268 B
HTML
Raw Normal View History

2020-02-24 17:00:39 +08:00
{{- $scratch := .Page.Scratch.Get "scratch" -}}
2020-02-18 16:22:24 +08:00
{{- /* shuffle md5 as id */ -}}
2020-01-31 22:53:04 +08:00
{{- $id := delimit (split (md5 .Inner) "" | shuffle) "" | printf "mermaid-%s" -}}
2020-02-07 00:10:00 +08:00
<div class="mermaid" id="{{ $id }}"></div>
2020-02-24 17:00:39 +08:00
{{- $scratch.SetInMap "mermaidMap" $id (trim .Inner "\n") -}}