Jekyll Markdown abbr
#10242
-
in Jekyll, you can use syntax like this at the end of a markdown post:
and each time you use <abbr title="Cascading Style Sheets">CSS</abbr> is there something like this in Docusaurus? Or how to get similar behavior? |
Beta Was this translation helpful? Give feedback.
Answered by
slorber
Jun 27, 2024
Replies: 1 comment 3 replies
-
I'm not aware of anything like this, maybe because it is not in the official spec of markdown (I don't know) However, natively you have footnotes if that might work for you
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't provide things like this out of the box, but you can implement many things like this with Remark plugins
You might find interesting:
If the behavior is not exactly what you want, you can still get inspired by the code, fork it, and tweak it to your needs.
In @wooorm example, he recommends:
Parsing
*[CSS]: Cascading Style Sheets
is more complicated to implement and not std MarkdownIf you are ok with an alternative…