jeffreytse / jekyll-spaceship

🚀 A Jekyll plugin to provide powerful supports for table, mathjax, plantuml, mermaid, emoji, video, audio, youtube, vimeo, dailymotion, soundcloud, spotify, etc.
MIT License
605 stars 63 forks source link

Footnotes in table cell produces Roman numeral in brackets #88

Open schizoidnightmares opened 1 year ago

schizoidnightmares commented 1 year ago
| test | test
| - | -
| Test | Test[^1]

[^1]: Test
produces: test test
Test Test1(I)
schizoidnightmares commented 1 year ago

Current workaround is to produce the footnotes manually, e.g.:

| test | test
| - | -
| Test | Test<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup>

<div class="footnotes" role="doc-endnotes" markdown=0>
    <ol>
        <li id="fn:1" role="doc-endnote">
            <p>Test&nbsp;<a href="#fnref:1" class="reversefootnote" role="doc-backlink">↑</a></p>
        </li>
    </ol>
</div>