I’m trying to add the author link defined in the markdown to be inserted into my layout
blog-post.md
---
author: <a href="https://www.somesite.com/author/">Author Name</a>
title: Some blog post
---
I want the author anchor tag to be inserted into my layout, so I did this:
{{ if isset .Params "author" }}
<span class="author">{{ .Params.author }}</span>
but the output comes out as:
<span class="author"><a href="https://www.somesite.com/author/">Author Name</a></span>
Any suggestions?