I have a Markdown file in which I use a link multiple times, for example:
This [website][an_awesome_website_link] is awesome.
You will never use anything else than this [website][an_awesome_website_link].
[an_awesome_website_link]: https://stackoverflow.com
Formatted, it looks like:
This website is awesome.
You will never use anything else than this website.
I want to display the link URL of [an_awesome_website_link] without having to write again the said URL.
For example, I want to have this, and write the URL of Stack Overflow only one time in my Markdown file:
This website (https://stackoverflow.com).
You will never use anything else than this website.
Check out https://stackoverflow.com for more fun.
Is it possible? How?
pandoc -t markdownwith a custom filter).