mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-24 17:26:32 +00:00
In addition, `\input` can now be used in an inline context, e.g. to provide part of a paragraph, as it can in LaTeX. Closes #4553.
246 B
246 B
pandoc -f latex -t native
foo \include{command/bar}
^D
[Para [Str "foo"]
,Para [Emph [Str "hi",Space,Str "there"]]]
pandoc -f latex -t native
foo \input{command/bar}
^D
[Para [Str "foo",Space,Emph [Str "hi",Space,Str "there"]]]