Check out the footnotes part of the Blackfriday markdown options:
footnotes
default: enabled
Purpose: When enabled, Pandoc-style footnotes will be supported. The footnote marker in the text that will become a superscript text; the footnote definition will be placed in a list of footnotes at the end of the document.
Example:
This is a footnote.[^1]
[^1]: the footnote text.
I suspect there aren’t many shortcode discussions because of this kinda ubiquitous markdown convention. Will that work for you?
I ask, since I’m note sure if this solves your issue, or if you were asking from a another angle.
Thanks for the reply, but not exactly what I’m after.
The use case for using numbers as reference-style link definitions in markdown is because I have a 100+ links in my article and having all the links at the bottom makes it easier to read and edit.
I now need to add rel="nofollow" to most of the links, but that requires a shortcode. Adding {{< myshortcode href="https://google.com/" text="products" >}} to each link makes it more difficult to review, less clean. Does that make sense?
So I’m just looking to see if there’s a different approach.