I must be missing something very obvious -- I can't get footnotes to work with redcarpet. I have version 3.0.0:
> gem list redcarpet
*** LOCAL GEMS ***
redcarpet (3.0.0)
I am trying code from the test code on the Github repo that has footnotes and it won't convert the Markdown to HTML that contains the footnote. I reduced the code down to just the footnotes function and put it on Gist.
The output is simply as follows:
<p>This is a footnote.[^1]</p>
<p>[^1]: It provides additional information.</p>
What am I missing here?