mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
We insert an HTML comment to avoid a `$` right before a digit, which pandoc will not recognize as a math delimiter.
7 lines
82 B
Markdown
7 lines
82 B
Markdown
```
|
|
% pandoc -f latex -t markdown
|
|
5\(-\)8 \(x\)
|
|
^D
|
|
5$-$`<!-- -->`{=html}8 $x$
|
|
```
|