6 lines
324 B
HTML
6 lines
324 B
HTML
<!-- Ermittle Parameter -->
|
|
{{ $htmlTable := .Inner | markdownify }}
|
|
{{ $table_class := .Get "table_class" | default "table table-hover" }}
|
|
{{ $thead_class := .Get "thead_class" | default "table-dark" }}
|
|
|
|
{{- partial "shortcodes/table" (dict "content" $htmlTable "table_class" $table_class "thead_class" $thead_class) -}}
|