c266734448
Previously we used our own homespun formatting. But this produces over-long lines that aren't ideal for diffs in tests. Easier to use something off-the-shelf and standard. Closes #7580. Performance is slower by about a factor of 10, but this isn't really a problem because native isn't suitable as a serialization format. (For serialization you should use json, because the reader is so much faster than native.)
50 lines
1 KiB
Markdown
50 lines
1 KiB
Markdown
```
|
|
% pandoc -f latex -t native
|
|
\documentclass{article}
|
|
\usepackage{listings}
|
|
|
|
\lstset{basicstyle=\ttfamily}
|
|
|
|
\begin{filecontents*}[overwrite]{example.tex}
|
|
\documentclass{article}
|
|
\begin{document}
|
|
\section{Bar}
|
|
This a Bar section
|
|
\end{document}
|
|
\end{filecontents*}
|
|
|
|
\begin{document}
|
|
|
|
\section{With lstlisting environment}
|
|
|
|
\begin{lstlisting}
|
|
\documentclass{article}
|
|
\begin{document}
|
|
\section{Foo}
|
|
This a Foo section
|
|
\end{document}
|
|
\end{lstlisting}
|
|
|
|
\section{With lstinputlisting command}
|
|
|
|
\lstinputlisting{example.tex}
|
|
\end{document}
|
|
^D
|
|
[ Header 1
|
|
( "with-lstlisting-environment", [], [] )
|
|
[ Str "With", Space, Str "lstlisting", Space, Str "environment" ]
|
|
, CodeBlock
|
|
( ""
|
|
, []
|
|
, []
|
|
) "\\documentclass{article}\n\\begin{document}\n\\section{Foo}\nThis a Foo section\n\\end{document}"
|
|
, Header 1
|
|
( "with-lstinputlisting-command", [], [] )
|
|
[ Str "With", Space, Str "lstinputlisting", Space, Str "command" ]
|
|
, CodeBlock
|
|
( ""
|
|
, [ "latex" ]
|
|
, []
|
|
) "\\documentclass{article}\n\\begin{document}\n\\section{Bar}\nThis a Bar section\n\\end{document}"
|
|
]
|
|
```
|