We recently upgraded our company website from Hugo 0.16 to 0.4x. One thing I haven’t been able to figure out how to fix is that many of our list templates include, for each item, links to related products we offer:
{{ if .Params.related }}
{{range $key, $value := .Params.related }}
<a href="{{ $value }}" class=“learn-more”>
{{ $key }}
</a><br />
{{ end }}
{{end}}
and these links now have lowercased $keys instead of keys which respect the manner in which the product name was typed in markdown frontmatter. I believe we used to use preserveTaxonomyNames: true to address this issue, but that feature seems to have been deprecated. What is the current mechanism for ensuring that related link names will respect the manner in which they were typed? It is important to us that ProductNAME not appear as productname.