aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/6739.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/command/6739.md b/test/command/6739.md
new file mode 100644
index 000000000..7c9ed24a2
--- /dev/null
+++ b/test/command/6739.md
@@ -0,0 +1,21 @@
+```
+% pandoc -f gfm
+* `--argument` This item does not have a pipe character
+* `--argA | --argB` This item has a pipe character
+^D
+<ul>
+<li><code>--argument</code> This item does not have a pipe character</li>
+<li><code>--argA | --argB</code> This item has a pipe character</li>
+</ul>
+```
+
+```
+% pandoc --mathjax -f gfm+tex_math_dollars
+* $|x|$
+* $|y|$
+^D
+<ul>
+<li><span class="math inline">\(|x|\)</span></li>
+<li><span class="math inline">\(|y|\)</span></li>
+</ul>
+```