Files
FixIt/layouts/shortcodes/admonition.html
T
Cell bd40c85586 🎉 Feat: support alert foldable title for blockquote compatible with Obsidian Callouts
refactor admonition shortcode: add todo type and aliases type
change min hugo version: 0.134.0
2024-10-08 15:12:01 +08:00

13 lines
363 B
HTML

{{- $type := cond .IsNamedParams (.Get "type") (.Get 0) -}}
{{- $title := cond .IsNamedParams (.Get "title") (.Get 1) | .Page.RenderString -}}
{{- $open := cond .IsNamedParams (.Get "open") (.Get 2) -}}
{{- $inner := .Inner | .Page.RenderString -}}
{{- dict
"Type" $type
"Title" $title
"Open" $open
"Text" $inner
| partial "plugin/admonition.html"
-}}