I wanted to add some footnotes to my site today, so I started by updated config/_default/hugo.toml, adding:
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
I then went to one of my markdown pages (an index.md article page), and added a simple footnote:
...Dunorl[^1] lead quiet services...
followed at the bottom of the document with…
[^1] An old man in his mid-70s, Dunorl is...
Ran the server and the links are not rendered.
Ran over the config and googled a bit, but couldn’t get a clue.
Ideas?