From cb3cb504c109d11edb34d0dd94b77a85fc8e0221 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Sun, 29 Sep 2024 16:12:59 -0700 Subject: [PATCH] Update table render hook example See https://github.com/gohugoio/hugo/pull/12889 --- content/en/render-hooks/tables.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/content/en/render-hooks/tables.md b/content/en/render-hooks/tables.md index 41eadad7b..b8a792747 100755 --- a/content/en/render-hooks/tables.md +++ b/content/en/render-hooks/tables.md @@ -82,7 +82,11 @@ In its default configuration, Hugo renders Markdown tables according to the [Git {{- range .THead }} {{- range . }} - + {{- .Text -}} {{- end }} @@ -93,7 +97,11 @@ In its default configuration, Hugo renders Markdown tables according to the [Git {{- range .TBody }} {{- range . }} - + {{- .Text -}} {{- end }}