You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The difference is that before, there was at least one hyphen in the row under the first column. But after there is not. We should make sure there is at least one hyphen.
The text was updated successfully, but these errors were encountered:
What did you do?
Create a Markdown table with max zero, one or two characters in a column.
What did you expect to happen?
Table to render.
What actually happened?
Just the code was shown.
What versions are you using?
main
.Please include code that reproduces the issue.
The best reproductions are self-contained scripts with minimal dependencies.
3.9.0
Before using GFM from #268, all render:
3.10 and
main
Only the one with "ABC" in the first column renders.
| | City name | Area | Population | Annual Rainfall |
| : | :-------: | :--: | :--------: | :-------------: |
| 1 | Adelaide | 1295 | 1158259 | 600.5 |
| 2 | Brisbane | 5905 | 1857594 | 1146.4 |
| 3 | Darwin | 112 | 120900 | 1714.7 |
| 4 | Hobart | 1357 | 205556 | 619.5 |
| 5 | Sydney | 2058 | 4336374 | 1214.8 |
| 6 | Melbourne | 1566 | 3806092 | 646.9 |
| 7 | Perth | 5386 | 1554769 | 869.4 |
| A | City name | Area | Population | Annual Rainfall |
| : | :-------: | :--: | :--------: | :-------------: |
| 1 | Adelaide | 1295 | 1158259 | 600.5 |
| 2 | Brisbane | 5905 | 1857594 | 1146.4 |
| 3 | Darwin | 112 | 120900 | 1714.7 |
| 4 | Hobart | 1357 | 205556 | 619.5 |
| 5 | Sydney | 2058 | 4336374 | 1214.8 |
| 6 | Melbourne | 1566 | 3806092 | 646.9 |
| 7 | Perth | 5386 | 1554769 | 869.4 |
| AB | City name | Area | Population | Annual Rainfall |
| :: | :-------: | :--: | :--------: | :-------------: |
| 1 | Adelaide | 1295 | 1158259 | 600.5 |
| 2 | Brisbane | 5905 | 1857594 | 1146.4 |
| 3 | Darwin | 112 | 120900 | 1714.7 |
| 4 | Hobart | 1357 | 205556 | 619.5 |
| 5 | Sydney | 2058 | 4336374 | 1214.8 |
| 6 | Melbourne | 1566 | 3806092 | 646.9 |
| 7 | Perth | 5386 | 1554769 | 869.4 |
The difference is that before, there was at least one hyphen in the row under the first column. But after there is not. We should make sure there is at least one hyphen.
The text was updated successfully, but these errors were encountered: