I'm looking for a way, if this is possible, to use a custom reference from another MD file. The most similar question I could find, but not exactly what I'm looking to do, was here: Markdown: Reference to section from another file
Say I have to files; content.md
& references.md
, and references.md contains the following:
[Click Me][custom-reference]
[custom-reference]: https://stackoverflow.com
Which results in this:
If I want to use [custom-reference]
in content.md is it possible?