I'm trying to write a markdown document that contains something like a centrally specified placeholder variable which allows to propagate a certain text snippet to different locations of the document, e.g.
placeholder = markdown files
This is my text about %placeholder%. %placeholder% should be used by everyone.
Unfortunately, after some research, I did not found a way to realize this behavior.
I'm aware of the reference-style links functionality of markdown. However, from my point of view, it does not seem to solve exactly the issue I'm facing. Further, https://www.brianchildress.co/variables-in-markdown/ described an approach that perfectly fits to my question. However, the variable random value
of the provided demo code is not replaced in the text.
I would be glad for any suggestions or at least the hint that the requested feature is not available.