Hello, after a quick survey of the docs I got two ways for creating absolute links:
[Privacy Policy]({{< ref "/privacy-policy.md" >}}) // works only in MD
<a href="{{< ref "/privacy-policy.md" >}}">Privacy Policy</a>
I’m looking for something like this:
{{ makemealink . "/privacy-policy.md" }}
It should create the href attribute and the content, I would use it in the template file. Any suggestion?
Thanks