This is useful because it helps the reader to know the meaning of the initials used within the text.
Now, in Markdown I was using this without problems (note the white space after the first parenthesis):
[CDN]( "Content Delivery Network")
But now, with HUGO v0.74.3, the links are rendered just as text: [CDN]( “Content Delivery Network”), not as links with a blank href.
Is there an option to include in the config file to enable goldmark to use a blank href link?
is there another option to have popups text or hint boxes just like the anchor title field gives?
Thanks for the abbr tag, I forgot it completely. But it forces me to use “unsafe: true” in the config file, although by now, is enough for me.
Regarding to markdown render hooks, I’m using it to implement target="_blank" in my content links, but I couldn’t rid off the extra space after the link. I’m using this template:
<a href="{{ .Destination | safeURL }}"{{ with .Title}} title="{{ . }}"{{ end }}{{ if strings.HasPrefix .Destination "https" }} target="_blank" rel="noopener"{{ end }}>{{ .Text | safeHTML }}</a>
Then, writing a link like this:
[MyText](https://someurl.com "Title Text"), additional text
It renders this (obviously with underline below MyText):