0bdcf415e4
Update tests. Reason: it turns out that the native output generated by pretty-simple isn't always readable by the native reader. According to https://github.com/cdepillabout/pretty-simple/issues/99 it is not a design goal of the library that the rendered values be readable using 'read'. This makes it unsuitable for our purposes. pretty-show is a bit slower and it uses 4-space indents (non-configurable), but it doesn't have this serious drawback.
58 lines
1.1 KiB
Markdown
58 lines
1.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}"
|
|
]
|
|
```
|