mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
10 lines
299 B
HTML
10 lines
299 B
HTML
{{- /*
|
|
Usage: `bs-table "class class-foo"`,
|
|
where class can be anything
|
|
*/ -}}
|
|
|
|
{{- $css_class := .Get 0 | default "table" -}}
|
|
{{- $html_table := .Inner | markdownify -}}
|
|
{{- $html_table = replace $html_table "<table>" (printf `<table class="%s">` $css_class) -}}
|
|
{{- $html_table | safeHTML -}}
|