summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-04-06 11:30:03 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-04-06 11:30:03 +0200
commit12ae1df5bfa447f94d8a3db24dd890e54bcbcf55 (patch)
tree47753976a96bf6e10aa57b7c31658b661ab5708d /test
parent12a3481632bfc3d477759095fa01fa92e169b292 (diff)
Allow raw latex commands starting with `\start` in Markdown.
Previously these weren't allowed because they were interpreted as starting ConTeXt environments, even without a corresponding \stop... Closes #3558.
Diffstat (limited to 'test')
-rw-r--r--test/command/3558.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/command/3558.md b/test/command/3558.md
new file mode 100644
index 000000000..3f4079064
--- /dev/null
+++ b/test/command/3558.md
@@ -0,0 +1,8 @@
+```
+% pandoc -t native
+\startmulti
+hello
+\endmulti
+^D
+[Para [RawInline (Format "tex") "\\startmulti\n",Str "hello",SoftBreak,RawInline (Format "tex") "\\endmulti"]]
+```