mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
9223788a05
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$
|
|
```
|