-
Notifications
You must be signed in to change notification settings - Fork 327
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
Empty rows should not be rendered #1729
Comments
Hmm interesting find. Good eye. |
Oh, good point on decrementing rowspans. |
Would the simplest fix be to strip empty pairs in html.renderer()? Or must this be fixed in marked-extended-tables ? |
Fixes to table generation should go in marked-extended-tables |
In addition to the two workarounds above, there is one breaking fix. This is to wrap rows into sections using multiple |
Agreed, this would be breaking for most of our users. Let's not do this. |
Demonstration of "fix" |
Consider this table, where very long text data has been split over multiple lines for editing reasons, and all the cells of the row are rowspanned into the above row..
Unfortunately, the markdown renders this with empty
<tr></tr>
...This is a bug, and it messes up the even/odd row striping:
The text was updated successfully, but these errors were encountered: