Hi is there a way to create a markdown command for footnotes?
Here is a page I would like to put them in:
Hi is there a way to create a markdown command for footnotes?
Here is a page I would like to put them in:
If you donβt want to use a plugin, you can use markdown footnotes; all you have to do is to enable Markdown Extra in your config.php
c::set('markdown.extra', true);
And then use footnotes like this:
Text with footnote.[^1]. And some more text [^2].
[^1]: My first footnote.
[^2]: And another footnote.
But the plugin is much more comfortable, of course.