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