I’m using the following approach to display a caption below an image inside a markdown post:
{{< figure src=“figure.jpg” title=“A Caption” >}}
But how do I add a link to the caption (e.g. for attribution)? HTML inside the title doesn’t seem to get parsed.
{{< figure src=“figure.jpg” title="A Caption <a href=“example.com”>link</a> " >}}
Thanks for any help!