Commit 399636e
committed
Fix markdown table parser consuming lines without pipes as table rows
The TableRow rule in the PEG grammar allowed rows with zero pipe
characters (TableItem2*). This caused lines like `<br>` immediately
following a table to be parsed as single-cell table rows, producing
spurious `<td><br></td>` in the rendered HTML.
Change TableItem2* to TableItem2+ so that rows not starting with `|`
must contain at least one `|` to be recognized as table rows.1 parent 92b07d6 commit 399636e
3 files changed
Lines changed: 40 additions & 9 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1270 | 1270 | | |
1271 | 1271 | | |
1272 | 1272 | | |
1273 | | - | |
| 1273 | + | |
1274 | 1274 | | |
1275 | 1275 | | |
1276 | 1276 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15937 | 15937 | | |
15938 | 15938 | | |
15939 | 15939 | | |
15940 | | - | |
| 15940 | + | |
15941 | 15941 | | |
15942 | 15942 | | |
15943 | 15943 | | |
| |||
15954 | 15954 | | |
15955 | 15955 | | |
15956 | 15956 | | |
| 15957 | + | |
15957 | 15958 | | |
15958 | | - | |
15959 | | - | |
15960 | | - | |
15961 | | - | |
| 15959 | + | |
| 15960 | + | |
| 15961 | + | |
| 15962 | + | |
| 15963 | + | |
| 15964 | + | |
| 15965 | + | |
| 15966 | + | |
| 15967 | + | |
| 15968 | + | |
| 15969 | + | |
| 15970 | + | |
15962 | 15971 | | |
15963 | | - | |
15964 | | - | |
15965 | 15972 | | |
15966 | 15973 | | |
15967 | 15974 | | |
| |||
16666 | 16673 | | |
16667 | 16674 | | |
16668 | 16675 | | |
16669 | | - | |
| 16676 | + | |
16670 | 16677 | | |
16671 | 16678 | | |
16672 | 16679 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1310 | 1310 | | |
1311 | 1311 | | |
1312 | 1312 | | |
| 1313 | + | |
| 1314 | + | |
| 1315 | + | |
| 1316 | + | |
| 1317 | + | |
| 1318 | + | |
| 1319 | + | |
| 1320 | + | |
| 1321 | + | |
| 1322 | + | |
| 1323 | + | |
| 1324 | + | |
| 1325 | + | |
| 1326 | + | |
| 1327 | + | |
| 1328 | + | |
| 1329 | + | |
| 1330 | + | |
| 1331 | + | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + | |
| 1335 | + | |
| 1336 | + | |
1313 | 1337 | | |
1314 | 1338 | | |
1315 | 1339 | | |
| |||
0 commit comments