Is there a way to remove accents from a string, i’ve search the doc I found some modifier (like anchorize, urlize etc) but none to replace accents (for exemple é => e).
This might not make you happy, but in my german weblog I have no such issues. Mostly because I define slugs and urls to such umlaut-pages. It’s probably best to “handle” these special characters by yourself or use a very specialized version of the solution @grob proposed.
Hugo discover taxonomy terms in front matter, where they are written in a language, apply some tranformation rules on this term name to get a key for the index collection index.
But there’s no transformer that apply the same rules to get a key from the language term name available in the template. It’s a missing feature.
Having this transformer and you are sure it works.
{{- with ( index $taxonomies ( $term | toKey ) ) -}}
a toKey (or no matter how you call it) should be provided by Hugo