From 439ffc2e7fd830f972cab19611bc7dadf9472890 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Sun, 23 Jul 2017 21:10:36 +0200
Subject: [PATCH] Added a test case with `markdown-latex_macros`.

---
 test/command/macros.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

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$
+```