I’m getting strings from a json file looking like so:
<p><strong>Ihre Aufgaben:</strong></p>
and loop over it in my template like so:
{{ range .config.description }}
<div class="jobad">{{ . | safeHTML }}</div>
{{ end }}
This works fine but all strong tags are removed from output while the p tags are preserved. Is this default behavior or maybe a matter of configuration?