2021-01-04 23:05:03 +01:00
|
|
|
```
|
|
|
|
% 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
|
2021-09-19 21:09:51 +02:00
|
|
|
[ 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}"
|
|
|
|
]
|
2021-01-04 23:05:03 +01:00
|
|
|
```
|