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

Table with a space after a header separator row #368

Closed
vaind opened this issue May 14, 2021 · 0 comments · Fixed by #391
Closed

Table with a space after a header separator row #368

vaind opened this issue May 14, 2021 · 0 comments · Fixed by #391
Labels
P3 A lower priority bug or feature request type-bug Incorrect behavior (everything from a crash to more subtle misbehavior)

Comments

@vaind
Copy link

vaind commented May 14, 2021

Hopefully, this should be an easy fix: if there's a space after the table row separating headers from content, the table is not rendered properly (e.g. on https://dart-lang.github.io/markdown/). Spaces at the end of any other line don't break the table. I've noticed this when publishing a package to pub.dev - GitHub rendered the table properly.

this works:

| header    | header 2  |
| --------- | --------: |
| row       |       val |
| row       |       val |

this doesn't (notice the space at the end of the second line)

| header    | header 2  |
| --------- | --------: | 
| row       |       val |
| row       |       val |
@srawlins srawlins added P3 A lower priority bug or feature request type-bug Incorrect behavior (everything from a crash to more subtle misbehavior) labels Feb 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
P3 A lower priority bug or feature request type-bug Incorrect behavior (everything from a crash to more subtle misbehavior)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants