Hello. I’d like to set anchor tags on existing H1 headings on some single content pages.
The IDs is set as page param like so…
subtitle: "Hugo Rocks"
The titles are called like this…
<h1 id="{{ .Params.subtitle }}">{{ .Params.subtitle }}<h1>
… but I need to convert the space to a hyphen and lowercase it because it outputs like this…
<h1 id="Hugo Rocks">Hugo Rocks<h1>
So I need to mimic the urlize function outside of a link: how can you do this in Hugo?