aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-03-07 14:28:10 -0800
committerJohn MacFarlane <[email protected]>2025-03-07 14:28:10 -0800
commitb7d2c4815fd2a3f429f4968e8e4e7a5d4d847d9e (patch)
tree983fdf6e9360052cc8bc6b0802b67a87b3ae9968 /test
parent5a360f1abea5542fd0c116cbf0e8ce41afcf1f40 (diff)
Markdown reader: fixed `escapedChar'` parser.
It should not accept escaped newlines. See #10672.
Diffstat (limited to 'test')
-rw-r--r--test/command/10672.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/command/10672.md b/test/command/10672.md
new file mode 100644
index 000000000..5ff9285e4
--- /dev/null
+++ b/test/command/10672.md
@@ -0,0 +1,26 @@
+```
+% pandoc
+| This | Is |
+|:-----|:---|
+| With \
+| Cells
+^D
+<table>
+<thead>
+<tr>
+<th style="text-align: left;">This</th>
+<th style="text-align: left;">Is</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td style="text-align: left;">With \</td>
+<td style="text-align: left;"></td>
+</tr>
+<tr>
+<td style="text-align: left;">Cells</td>
+<td style="text-align: left;"></td>
+</tr>
+</tbody>
+</table>
+```