Let's say we have simple empty .Rmd file with YAML metadata like this
---
link: https://google.com
---
Then in html template, it will show up automatically in <a> tag
<a href="http://google.com" class="uri">http://google.com</a>
How to force pandoc not to build <a> when there is url in YAML? I mean what I wanna finally get is plan text in html template
http://google.com
Or if I use own html template I can add a link that way
<a href="$link$">Google</a>
Thanks for help!