Update table render hook example

See https://github.com/gohugoio/hugo/pull/12889
This commit is contained in:
Joe Mooring
2024-09-29 16:12:59 -07:00
committed by GitHub
parent efbee0bff8
commit cb3cb504c1
+10 -2
View File
@@ -82,7 +82,11 @@ In its default configuration, Hugo renders Markdown tables according to the [Git
{{- range .THead }}
<tr>
{{- range . }}
<th {{ printf "style=%q" (printf "text-align: %s" .Alignment) | safeHTMLAttr }}>
<th
{{- with .Alignment }}
{{- printf " style=%q" (printf "text-align: %s" .) | safeHTMLAttr }}
{{- end -}}
>
{{- .Text -}}
</th>
{{- end }}
@@ -93,7 +97,11 @@ In its default configuration, Hugo renders Markdown tables according to the [Git
{{- range .TBody }}
<tr>
{{- range . }}
<td {{ printf "style=%q" (printf "text-align: %s" .Alignment) | safeHTMLAttr }}>
<td
{{- with .Alignment }}
{{- printf " style=%q" (printf "text-align: %s" .) | safeHTMLAttr }}
{{- end -}}
>
{{- .Text -}}
</td>
{{- end }}