1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
```
% 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}"
]
```
|