aboutsummaryrefslogtreecommitdiff
path: root/test/command/macros.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-01-13 22:12:32 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2018-01-13 22:12:32 -0800
commite7d95cadf537909bcb1e7d17d4545932d6bb34bc (patch)
tree30e2fd0f5f116f252d68b894f073a96b779a75ea /test/command/macros.md
parent485535464df27f5c2e2dd144650af318bde239c1 (diff)
downloadpandoc-e7d95cadf537909bcb1e7d17d4545932d6bb34bc.tar.gz
LaTeX reader: pass through macro defs in rawLaTeXBlock...
even if the `latex_macros` extension is set. This reverts to earlier behavior and is probably safer on the whole, since some macros only modify things in included packages, which pandoc's macro expansion can't modify. Closes #4246.
Diffstat (limited to 'test/command/macros.md')
-rw-r--r--test/command/macros.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/command/macros.md b/test/command/macros.md
index 4bd2eb00a..9de87e7a0 100644
--- a/test/command/macros.md
+++ b/test/command/macros.md
@@ -3,6 +3,7 @@
\newcommand{\my}{\phi}
$\my+\my$
^D
+\newcommand{\my}{\phi}
$\phi+\phi$
```
@@ -73,6 +74,7 @@ x &= y\\\end{aligned}\]
\my+\my
\end{equation}
^D
+\newcommand{\my}{\phi}
\begin{equation}
\phi+\phi
\end{equation}
@@ -96,5 +98,6 @@ x &= y\\\end{aligned}\]
\newcommand{\my}{\emph{a}}
\my
^D
+\newcommand{\my}{\emph{a}}
\emph{a}
```