I need to create a URL to a bookmark but something is not going as hoped:
<a href="{{ .button.href | absURL }}" class="btn btn-outline-dark mt-4">{{ .button.text }}</a>
This is the JSON:
if I put the # character before contact, the resulting URL is only the baseURL, while if I remove the # character, the URL is correct, but I need to create a URL to a bookmark, so I need the # character
"button" : {
"text" : "Scegli",
"href" : "#contact"
}