aboutsummaryrefslogtreecommitdiff
path: root/test/command/6739.md
blob: ff2d4bc75290cd3c1da1511b6734e5576dffc5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
```
% 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>
```