Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footnotes in table cell produces Roman numeral in brackets #88

Open
schizoidnightmares opened this issue Apr 18, 2023 · 1 comment
Open

Comments

@schizoidnightmares
Copy link

| test | test
| - | -
| Test | Test[^1]

[^1]: Test

produces:

test test
Test Test1(I)
@schizoidnightmares
Copy link
Author

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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant