website/layouts/shortcodes/table.html

10 lines
290 B
HTML
Raw Normal View History

2025-06-21 02:30:42 -07:00
{{ $htmlTable := .Inner | markdownify }}
{{ $old := "<table>" }}
{{ $new := "" }}
{{ $title := .Get "title" }}
{{ if $title }}
{{ $new = printf "<table><caption>%s</caption>" ($title | markdownify) }}
{{ end }}
{{ $htmlTable := replace $htmlTable $old $new }}
{{ $htmlTable | safeHTML }}