New Tab Link
A Hugo shortcode to create new tab links with target="_blank"
on the <a >
tag.
# file.md
{{< new_tab_link title="Probably Google" url="https://google.com/" >}}
# new_tab_link.html
<a href="{{ .Get "url" }}" target="_blank">{{ with .Get "title" }}{{.}}{{else}}{{.Get "url"}}{{end}}</a>
A link in a sentence that’s Probably Google or something.