mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-31 08:57:15 +00:00
12 lines
No EOL
348 B
HTML
12 lines
No EOL
348 B
HTML
{{- $context := .context }}
|
|
{{- $content := .content }}
|
|
{{- $align := .align | default "center" }}
|
|
{{- with $context }}
|
|
<div class="mermaid" align="{{ $align }}">
|
|
{{- $content | safeHTML -}}
|
|
</div>
|
|
{{- $page := .Page }}
|
|
{{- range $page.OutputFormats }}
|
|
{{- $page.Scratch.Set (printf "%sHasMermaid" (.Name | lower)) true }}
|
|
{{- end }}
|
|
{{- end }} |