Motif No. 1, copyright © 2010 Douglas Cuthbertson
Table Capture Values
{{- if ne $captionValue "" -}}
<caption>{{- $captionValue -}}</caption>
{{- end -}}
{{- if ne $colGroupValue "" -}}
<colgroup>
{{- template "createColgroup" $colGroupValue -}}
</colgroup>
{{- end -}}
{{- if ne $headValue "" -}}
<thead>
{{- template "createRowsHead" $headValue -}}
</thead>
{{- end -}}
{{- if ne $bodyValue "" -}}
<tbody>
{{- template "createRows" $bodyValue -}}
</tbody>
{{- end -}}
{{- if ne $footValue "" -}}
<tfoot>
{{- template "createRows" $footValue -}}
</tfoot>
{{- end -}}