Hi,
I just want to make sure I’m not missing something.
I have some sort of page footer that is generated with a template, which contains in particular:
<h2>Useful Links<a class="zola-anchor" href="#{{ id }}">🔗</a></h2>
Pages that use this footer contain internal links to this anchor, e.g. (cf. [Useful Links](#useful-links))
. They used to work correctly but after a zola update, the site won’t build anymore as the link checker raises errors about non-existent anchors in links. As far as I can tell, this is due to this commit that made the link checker handle “naked anchor links”. And since configuration variables skip_prefixes
and skip_anchor_prefixes
only target external links, and there’s no way to disable the link checker from the command line, I think I’m stuck.
So my question is: am I right that internal links to anchor that are generated using a template are not possible anymore in zola, or am I missing something? Thanks a lot for any clarification!