17 lines
490 B
HTML
17 lines
490 B
HTML
![]() |
{{ $caption := .Get "caption" }}
|
||
|
{{ $useHeaderRow := .Get "header" }}
|
||
|
{{ $rows := .Inner | transform.Unmarshal }}
|
||
|
<table style="margin:0;white-space:nowrap">
|
||
|
{{ with $caption }}<caption>{{ . }}</caption>{{ end }}
|
||
|
{{- if $useHeaderRow -}}
|
||
|
{{ $headerRow := index $rows 0 -}}
|
||
|
{{- $rows = after 1 $rows -}}
|
||
|
<thead><tr>{{ range $headerRow }}<th>{{ . }}</th>{{ end }}</tr></thead>
|
||
|
{{ end -}}
|
||
|
<tbody>
|
||
|
{{ range $rows -}}
|
||
|
<tr>{{ range . }}<td>{{ . }}</td>{{ end }}</tr>
|
||
|
{{ end -}}
|
||
|
</tbody>
|
||
|
</table>
|