aboutsummaryrefslogtreecommitdiff
path: root/test/command/parse-raw.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-07-18 22:30:05 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-07-18 22:31:03 -0700
commit28cad165179378369fcf4d25656ea28357026baa (patch)
treed94b27ef8175fbdfaee04828bf5b6f64528acd4a /test/command/parse-raw.md
parent5c655e86d5d34172bc5892927309d8dff6023493 (diff)
downloadpandoc-28cad165179378369fcf4d25656ea28357026baa.tar.gz
Markdown writer: prefer using raw_attribute when enabled.
The `raw_attribute` will be used to mark raw bits, even HTML and LaTeX, and even when `raw_html` and `raw_tex` are enabled, as they are by default. To get the old behavior, disable `raw_attribute` in the writer. Closes #4311.
Diffstat (limited to 'test/command/parse-raw.md')
-rw-r--r--test/command/parse-raw.md4
1 files changed, 2 insertions, 2 deletions
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}*
```
```