aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-02-22 21:17:22 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-02-22 21:18:04 -0800
commitf0a991a22be9b82e192d63bf80bbe39679bb2e07 (patch)
tree2ebc75ef6acaf3ca68b8844fc68adfa2e3f39a0c /test
parent00e4bb51e47487fa146caee3bcbbacef51292acc (diff)
downloadpandoc-f0a991a22be9b82e192d63bf80bbe39679bb2e07.tar.gz
T.P.CSV: fix parsing of unquoted values.
Previously we didn't allow unescaped quotes in unquoted values, but they are allowed. Closes #7112.
Diffstat (limited to 'test')
-rw-r--r--test/command/7112.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/7112.md b/test/command/7112.md
new file mode 100644
index 000000000..a75b9250a
--- /dev/null
+++ b/test/command/7112.md
@@ -0,0 +1,15 @@
+```
+% pandoc -f rst
+.. csv-table::
+
+ setting, ``echo PATH="path"``
+^D
+<table>
+<tbody>
+<tr class="odd">
+<td>setting</td>
+<td><code>echo PATH="path"</code></td>
+</tr>
+</tbody>
+</table>
+```