diff options
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/4164.md | 2 | ||||
-rw-r--r-- | test/command/macros.md | 10 | ||||
-rw-r--r-- | test/command/parse-raw.md | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/test/command/4164.md b/test/command/4164.md index 8cfc960a0..50c3117ec 100644 --- a/test/command/4164.md +++ b/test/command/4164.md @@ -12,7 +12,7 @@ Here is inline html: <div> -<balise> bla bla +`<balise>`{=html} bla bla </div> diff --git a/test/command/macros.md b/test/command/macros.md index 0c91944a1..e3c07e661 100644 --- a/test/command/macros.md +++ b/test/command/macros.md @@ -1,5 +1,5 @@ ``` -% pandoc -f markdown+latex_macros -t markdown +% pandoc -f markdown+latex_macros -t markdown+raw_tex-raw_attribute \newcommand{\my}{\phi} $\my+\my$ ^D @@ -9,7 +9,7 @@ $\phi+\phi$ ``` ``` -% pandoc -f markdown-latex_macros -t markdown +% pandoc -f markdown-latex_macros -t markdown+raw_tex-raw_attribute \newcommand{\my}{\phi} $\my+\my$ ^D @@ -70,7 +70,7 @@ x &= y\\\end{aligned}\] ``` ``` -% pandoc -f markdown+latex_macros -t markdown +% pandoc -f markdown+latex_macros -t markdown+raw_tex-raw_attribute \newcommand{\my}{\phi} \begin{equation} \my+\my @@ -84,7 +84,7 @@ x &= y\\\end{aligned}\] ``` ``` -% pandoc -f markdown-latex_macros -t markdown +% pandoc -f markdown-latex_macros -t markdown+raw_tex-raw_attribute \newcommand{\my}{\phi} \begin{equation} \my+\my @@ -98,7 +98,7 @@ x &= y\\\end{aligned}\] ``` ``` -% pandoc -f markdown+latex_macros -t markdown +% pandoc -f markdown+latex_macros -t markdown+raw_tex-raw_attribute \newcommand{\my}{\emph{a}} \my ^D diff --git a/test/command/parse-raw.md b/test/command/parse-raw.md index f4e493c69..a1a41b551 100644 --- a/test/command/parse-raw.md +++ b/test/command/parse-raw.md @@ -2,7 +2,7 @@ % pandoc -f latex+raw_tex -t markdown \emph{Hi \foo{there}} ^D -*Hi \foo{there}* +*Hi `\foo{there}`{=latex}* ``` ``` @@ -16,7 +16,7 @@ % pandoc -f html+raw_html -t markdown <em>Hi <blink>there</blink></em> ^D -*Hi <blink>there</blink>* +*Hi `<blink>`{=html}there`</blink>`{=html}* ``` ``` |