Show footnotes on current slide
Thanks for creating this really pretty TUI markdown presenter.
I saw that a PR had been merged for defining footnotes, but I couldn't find my footnote definitions. Turns out they're included at the end of the presentation. I believe it would be desirable to have the definitions on the current slide (either via an option or as default?). My use case is to use footnotes to link URLs, which I want to be able to click on during the presentation.
Thank you in advance!
Not sure what you're seeing but based on #616 which added support for this, this will show up wherever you place the [^1]: xyz definitions. Please provide an example presentation that proves otherwise.
Sorry for not providing a more complete description earlier. Here's a full example:
A test[^1]
[^1]: https://example.com
<!-- end_slide -->
They're here:
Renders:
Version: presenterm 0.15.1
Thanks for the clarification. This is tied to how comrak (the markdown library we use) deals with footnote definitions. I created https://github.com/kivikakk/comrak/issues/669 to see if something can be changed there so definitions show up where they're defined.
This issue was fixed in comrak a while back but it slipped through. This is now fixed in #803.
Awesome, thanks!