diff options
| author | John MacFarlane <[email protected]> | 2025-09-18 11:52:22 +0200 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-09-18 11:52:22 +0200 |
| commit | 70393b4235eb1d0c826d968e1ea6cbc96a28e8cb (patch) | |
| tree | 9be25f5a1ae9b81facd9a0fb21cd09a4504e3090 /test | |
| parent | 4f2a383f499d2401b1ec6948423738941862e46e (diff) | |
RST reader: fix regression in simple table parsing.
Closes #11150.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/11150.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/command/11150.md b/test/command/11150.md new file mode 100644 index 000000000..38898b1d8 --- /dev/null +++ b/test/command/11150.md @@ -0,0 +1,29 @@ +``` +% pandoc -f rst +=== ===== +int float +=== ===== +10 9.90 +-10 9.90 +=== ===== +^D +<table> +<thead> +<tr> +<th>int</th> +<th>float</th> +</tr> +</thead> +<tbody> +<tr> +<td>10</td> +<td>9.90</td> +</tr> +<tr> +<td>-10</td> +<td>9.90</td> +</tr> +</tbody> +</table> + +``` |
