How can I disable the anchor character?

I am trying to migrate from Hugo to Zola and almost everything works, except this one thing. I did not find any documentation on this. Is there a way to remove the chain icon?

Try to add
insert_anchor_links = false
on config.toml, If I understood you correctly

By default it should be disabled. Otherwise as @Roman said, you can disable it in the section front-matter: https://www.getzola.org/documentation/content/section/

As the docs mention, you can also change the template rendered.

Thanks I will try this. I think I want anchor links but not the icon (the chain icon).

Thanks I am going to fiddle with these.

you may create anchor-link.html template and customize it as you want, I just use #

<a class="anchor" href="#{{ id }}">#</a>