diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-01-08 08:43:51 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-01-08 08:43:51 -0800 |
commit | fc78be1140532dcd7dc4ef614ac753cca5cf8b1e (patch) | |
tree | c2918a27e05a53efa2df2c60b4f795000e9fbd87 /test | |
parent | bef0133fe044350caeee24cdf79203a9306534da (diff) | |
download | pandoc-fc78be1140532dcd7dc4ef614ac753cca5cf8b1e.tar.gz |
LaTeX reader: improve parsing of raw environments.
If parsing fails in a raw environment (e.g. due to special
characters like unescaped `_`), try again as a verbatim
environment, which is less sensitive to special characters.
This allows us to capture special environments that change
catcodes as raw tex when `-f latex+raw_tex` is used.
Closes #6034.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/6034.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command/6034.md b/test/command/6034.md new file mode 100644 index 000000000..af41f2d50 --- /dev/null +++ b/test/command/6034.md @@ -0,0 +1,11 @@ +``` +% pandoc -f latex+raw_tex -t native +\begin{figure*} + \centering + \begin{overpic}{test_pic} + \put (70,80) {Caption} + \end{overpic} +\end{figure*} +^D +[RawBlock (Format "latex") "\\begin{figure*}\n \\centering\n \\begin{overpic}{test_pic}\n \\put (70,80) {Caption}\n \\end{overpic}\n\\end{figure*}"] +``` |