{{ $align := .Get "align" | default "center" }} {{ $caption := .Get "caption" }} {{ $cite := .Get 0 | default (.Get "cite") }} {{ $float := .Get "float" }} {{ $caption = $caption | markdownify }} {{ $cite = $cite | markdownify }} {{ $content := .Inner | markdownify }} {{ $margins := "" }} {{ if $float }} {{ if eq $float "start" }} {{ $margins = "me-4" }} {{ else if eq $float "end" }} {{ $margins = "ms-4" }} {{ else }} {{ errorf "invalid float: %q" $float }} {{ end }} {{ end }}
{{ $content }}
{{ with $caption }}
{{ . }}
{{ end }} {{ with $cite }} {{ end }}