Some implementations of Markdown support description lists, like Pandoc's. There is basically an established syntax, although it differs slightly between implementations and is not the simplest to parse: https://talk.commonmark.org/t/description-list/289/.
- word: definition
Or
- *word*: definition
It’s perfectly readable and conveys the intent of a description list. I wish Markdown parsers would generate a
What is the advantage of
Instead of using definition lists, I link to glossary pages.
In Markdown, I use wikilink syntax for those links, so [[Anmeldung]] translates to a link to that glossary page.
Then I use a bit of JavaScript to make the link open a tooltip instead of a separate page.
I find this approach easier for me and for the readers. You can see it in action here: https://allaboutberlin.com/guides/anmeldung-in-english-berli...
* Coffee__
Superior hot beverage.
* Tea__
The other one.
__ (two spaces to force new line)
- term :: description
I use it all the time as a glossary for my notes.