iamacup / react-native-markdown-display

React Native 100% compatible CommonMark renderer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Footnotes not working

fardeem opened this issue · comments

Footnotes seems to be supported but it doesn't seem to work. I'm rendering the following:

const content = `
# hello
        
hello world [^1]

[^1]: Book pg. 11 
`;

But it renders like this:

image

Am I doing anything wrong?