markdown-it / markdown-it-footnote

Footnotes plugin for markdown-it markdown parser
https://markdown-it.github.io/
MIT License
212 stars 59 forks source link

Is it possible to reference one footnote from another? #35

Closed jLouzado closed 3 years ago

jLouzado commented 5 years ago

Love the project btw, just wondering how would I reference one footnote inside another? the identifiers keep changing after all.

rlidwka commented 3 years ago

Something like this?:

test [^foo]

[^foo]: test1 [^bar]
[^bar]: test2 [^baz]
[^baz]: test3

seems to work at the moment