aboutsummaryrefslogtreecommitdiff
path: root/site/layouts/shortcodes/bs-table.html
blob: 6f972d66513ffe800cced5f9a0098558825ce016 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- /*
  Usage: `table "class"`,
  where class can be anything
*/ -}}

{{ $htmlTable := .Inner | markdownify }}
{{ $css_class := .Get 0 | default "table" }}
{{ $old := "<table>" }}
{{ $new := printf "<table class=\"%s\">" $css_class }}
{{ $htmlTable := replace $htmlTable $old $new }}
{{ $htmlTable | safeHTML }}