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.
This commit is contained in:
John MacFarlane
2017-04-06 11:30:03 +02:00
parent 12a3481632
commit 12ae1df5bf
2 changed files with 10 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
```
% pandoc -t native
\startmulti
hello
\endmulti
^D
[Para [RawInline (Format "tex") "\\startmulti\n",Str "hello",SoftBreak,RawInline (Format "tex") "\\endmulti"]]
```