Hi,
Hugo seems to lowercase all map keys in the front matter. But I have a piece of software generating such frontmatters where I need it to retain case sensitivity; For example:
---
fields:
fieldA_: "Descr1"
fieldB_: "Descr2"
---
if I
{{ range $ix,$v := .Page.Params.fields }}
{{ $ix }}
{{ end }}
I simply get fielda_ fieldb_
. Is there a way to get the case-sensitive version of the keys?