mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-11 21:37:17 +00:00
Feature request: inline footnotes #343
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @AndreyAkinshin on GitHub (Feb 5, 2020).
Originally assigned to: @davidackroyd99 on GitHub.
It would be nice to have inline footnotes (aka inline notes). Here is the relevant pandoc example:
See also: https://pandoc.org/MANUAL.html#footnotes
@NeomMob commented on GitHub (Mar 16, 2020):
This is also something I am looking for.
@davidackroyd99 commented on GitHub (Jul 23, 2020):
Please assign to me and I will see if I can resolve.
@MihaZupan commented on GitHub (Jul 23, 2020):
@davidackroyd99 Assigned. Thanks for looking at these issues!
@davidackroyd99 commented on GitHub (Aug 2, 2020):
Having a lot of problems with implementing this. Basically I can write in InlineParser to filter out the inline notes from the main body of the text (done) but I cannot then add another block level element using that parser to create the actual footnote, because the InlineParser does not seem to be able to create block level elements.
Does anyone have any recommendations?