I’m trying render hooks to fix markdown links that end in .md and should end in .html but I am getting a syntax error that I can’t figure out:
<a href="{{ .Destination | replaceRE '\.md$' '\.html' | safeURL }}"
{{ with .Title}} title="{{ . }}" {{ end }}{{ if strings.HasPrefix .Destination "http" }} target="_blank" rel="noopener" {{ end }}>{{ .Text | safeHTML }}</a>
Am I missing something here? Or maybe there is a better way to achieve the same result ?