aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/layouts/shortcodes/bs-table.html
blob: 42a18d5782563807fb9acbfacb58428c36cdd9d2 (plain) (blame)
1
2
3
4
5
6
7
8
{{- /*
  Usage: `bs-table "class class-foo"`, where class can be any string
*/ -}}

{{- $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 -}}