5736b331d8
Previously we only supported it in inline contexts; now we support it in all contexts, including math. Partially addresses #7299.
9 lines
175 B
Markdown
9 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.
|
|
```
|