{{ $align := .Get "align" | default "center" }} {{ $caption := .Get "caption" | markdownify }} {{ $cite := (.Get 0 | default (.Get "cite")) | markdownify }} {{ $float := .Get "float" }} {{ $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 }}