0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/site/layouts/shortcodes/bs-table.html

10 lines
299 B
HTML
Raw Normal View History

{{- /*
2020-10-22 08:32:46 +02:00
Usage: `bs-table "class class-foo"`,
where class can be anything
*/ -}}
2020-10-22 08:32:46 +02:00
{{- $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 -}}