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
Empty table cells are only recognized by the creole parser if they contain at least one space.
Example:
echo -e "| a | bbb |||\n| c | ddd |||" >x.creole pandoc --standalone --from creole x.creole | grep ddd <p>| a | b ||| | c | ddd |||</p> echo -e "| a | bbb | | |\n| c | ddd | | |" >y.creole pandoc --standalone --from creole y.creole | grep 'ddd' <td>ddd</td>
Kudos to @bernhardreiter for reporting this to me.
The text was updated successfully, but these errors were encountered:
Handle empty cells correctly in creole reader. Fixes jgm#9141
dce62cd
Created PR #9142
Sorry, something went wrong.
f9dc5b5
No branches or pull requests
Empty table cells are only recognized by the creole parser if they contain at least one space.
Example:
Kudos to @bernhardreiter for reporting this to me.
The text was updated successfully, but these errors were encountered: