summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-07-23 21:10:36 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-07-24 00:02:55 +0200
commit439ffc2e7fd830f972cab19611bc7dadf9472890 (patch)
tree118928aad1415156da4156f67b46cc0e57eba530 /test/command
parent159d31e80ff2430e09b3084c5cea85fae46652a9 (diff)
Added a test case with `markdown-latex_macros`.
Diffstat (limited to 'test/command')
-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$
+```