aboutsummaryrefslogtreecommitdiff
path: root/site/layouts/shortcodes/bs-table.html
blob: ac2c5a53b94e8df310d0b5c3a44353e1fa7477b9 (plain)
1
2
3
4
5
6
7
8
9
10
{{- /*
  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 `<div class="table-responsive"><table class="%s">` $css_class) -}}
{{- $html_table = replace $html_table "</table>" "</table></div>" -}}
{{- $html_table | safeHTML -}}