38 lines
1,009 B
Markdown
38 lines
1,009 B
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}"]
|
||
|
```
|