We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Explain the problem.
If I omit to close td tags, I have three trailing colons after the table and a warning of a non-closing div, even if the html is valid.
test.md :
::: mydiv <table> <tr> <td>cell A <td>cell B <td>cell C <tr> <td>cell D <td>cell E <td>cell F </table> :::
command pandoc test.md -o test.pdf
pandoc test.md -o test.pdf
output
the warning :
[WARNING] Div at test.md line 1 column 1 unclosed at test.md line 17 column 1, closing implicitly.
Pandoc version? pandoc 3.6, Linux debian 6.1.0-11-amd64
The text was updated successfully, but these errors were encountered:
Pandoc has some logic to deal with nested divs and HTML; this is complicated and doesn't always work properly.
Best approach in cases like this is to mark this explicitly as HTML:
::: mydiv ```{=html} <table> <tr> <td>cell A <td>cell B <td>cell C <tr> <td>cell D <td>cell E <td>cell F </table> ``` :::
Or use -f commonmark_x.
-f commonmark_x
Sorry, something went wrong.
No branches or pull requests
Explain the problem.
If I omit to close td tags, I have three trailing colons after the table and a warning of a non-closing div, even if the html is valid.
test.md :
command
pandoc test.md -o test.pdf
output
the warning :
Pandoc version?
pandoc 3.6, Linux debian 6.1.0-11-amd64
The text was updated successfully, but these errors were encountered: