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
When a table is at the top of the document, it is parsed correctly:
$ texlua markdown-cli.lua pipeTables=true <<< ' | aaa | bbb | ccc | |-----|-----|-----| | aaa | bbb | ccc | | aaa | bbb | ccc | '
\markdownRendererDocumentBegin \markdownRendererTable{}{3}{3}{ddd}{{aaa}{bbb}{ccc}}{{aaa}{bbb}{ccc}}{{aaa}{bbb}{ccc}} \markdownRendererDocumentEnd
However, when a table is nested in a list, empty lines are added to the table:
$ texlua markdown-cli.lua pipeTables=true <<< ' - aaa: | aaa | bbb | ccc | |-----|-----|-----| | aaa | bbb | ccc | | aaa | bbb | ccc | '
\markdownRendererDocumentBegin \markdownRendererUlBegin \markdownRendererUlItem aaa: \markdownRendererInterblockSeparator \markdownRendererTable{}{5}{3}{ddd}{{aaa}{bbb}{ccc}}{{}{}{}}{{aaa}{bbb}{ccc}}{{}{}{}}{{aaa}{bbb}{ccc}} \markdownRendererUlItemEnd \markdownRendererUlEnd \markdownRendererDocumentEnd
The text was updated successfully, but these errors were encountered:
Document that #368 was sponsored by ISTQB
2146161
lostenderman
Successfully merging a pull request may close this issue.
When a table is at the top of the document, it is parsed correctly:
However, when a table is nested in a list, empty lines are added to the table:
The text was updated successfully, but these errors were encountered: