mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-13 02:55:55 +00:00
Otherwise things like `\noindent foo` break and turn into `\noindentfoo`. Affects `-f latex+raw_tex` and `-f markdown` (and other formats that allow `raw_tex`). Closes #1773.
7 lines
119 B
Markdown
7 lines
119 B
Markdown
```
|
|
% pandoc -f latex+raw_tex -t native
|
|
\noindent hi
|
|
^D
|
|
[Para [RawInline (Format "latex") "\\noindent ",Str "hi"]]
|
|
```
|