aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/command/macros.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/test/command/macros.md b/test/command/macros.md
index 74d63ef08..055c86d25 100644
--- a/test/command/macros.md
+++ b/test/command/macros.md
@@ -1,8 +1,17 @@
```
-% pandoc -t markdown
+% pandoc -f markdown+latex_macros -t markdown
\newcommand{\my}{\phi}
$\my+\my$
^D
\newcommand{\my}{\phi}
$\phi+\phi$
```
+
+```
+% pandoc -f markdown-latex_macros -t markdown
+\newcommand{\my}{\phi}
+$\my+\my$
+^D
+\newcommand{\my}{\phi}
+$\my+\my$
+```