markdown-it-footnotes 0.1.0

Creates footnotes and lists of footnotes in Markdown documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# markdown-it-footnotes
A purpose-built implementation of footnotes for markdown-it.rs. Unlike some other implementations, footnotes are placed
where you placed them in the source Markdown document, rather than always at the bottom.

Footnotes can be referenced using `[^footnote-id]` and defined on their own line using `[^footnote-id]: Footnote contents`

```md
I'd like to reference something.[^foo]

## References
[^foo]: Bar
```