Open
Description
What version of Hugo are you using (hugo version
)?
$ hugo version hugo v0.143.1+extended+withdeploy linux/amd64 BuildDate=unknown
Does this issue reproduce with the latest release?
Yes
When I try to build my hugo project, if there is a valid table in a markdown file, the default rss.xml template pukes at this line.
The error i receive is:
Error: error building site: render: failed to render pages: render of "<PATH>/content/author/_index.md" failed: template: _internal/_default/rss.xml:55:22: executing "_internal/_default/rss.xml" at <.Summary>: error calling Summary: table hook renderer not found
When I add the template locally to /themes//layouts/_default/rss.xml and comment out line 55 (linked above), the build works perfectly fine.
I am happy to provide any relevant config information, but I do not have anything special in the config. I am using the default Goldmark Markdown Renderer.
markup:
goldmark:
extensions:
typographer: false
renderer:
unsafe: true