From the most recent remark-gfm documentation, I can see it should support footnotes. However, when I type something like:
Text here. [^1]
Text here. [^2]
[^1]: note 1
[^2]: note 2
This is displayed as text, rather than converted to HTML tags.
My code is:
...
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";
...
<ReactMarkdown children={markdown_content_here} remarkPlugins={[remarkGfm]} />
...
` tag.
– Firmin Martin Nov 10 '21 at 23:06