mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 22:25:53 +00:00
Previously we only supported it in inline contexts; now we support it in all contexts, including math. Partially addresses #7299.
10 lines
175 B
Markdown
10 lines
175 B
Markdown
```
|
|
% pandoc -f markdown -t latex
|
|
\newcommand{\myFruit}{Mango\xspace}
|
|
\myFruit is the king of fruits.
|
|
^D
|
|
\newcommand{\myFruit}{Mango\xspace}
|
|
|
|
Mango is the king of fruits.
|
|
```
|