mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
11 lines
313 B
HTML
11 lines
313 B
HTML
{{- /*
|
|
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 }}
|