JetBrains / markdown

Markdown parser written in kotlin
Apache License 2.0
706 stars 78 forks source link

Support for footnote syntax #118

Open colindean opened 1 year ago

colindean commented 1 year ago

I'd love to see support for footnotes, e.g.

The system can only support single-environment deployment.
This limits our capacity.
While we work on a solution[^prod_pr_open],
we'll continue to adjust resources in the primary environment.

[^prod_pr_open]: Work for deployment to multiple environments exists in a draft PR.

renders as such in GitHub, GitLab, goldmark, pandoc, and others (but is not yet a part of Commonmark):


The system can only support single-environment deployment. This limits our capacity. While we work on a solution[^prod_pr_open], we'll continue to adjust resources in the primary environment.


[^prod_pr_open]: Work for deployment to multiple environments exists in a draft PR.