pandoc/test/command/lstlisting.md
schrieveslaach ddf2524477 Fix keyval funtion: pandoc did not parse options in braces correctly.… (#3642)
* Fix keyval funtion: pandoc did not parse options in braces correctly. Additionally, dot, dash, and colon were no valid characters

* Add | as possible option value

* Improved code
2017-05-06 15:09:29 +02:00

25 lines
1 KiB
Markdown

```
% pandoc -f latex -t native
\begin{lstlisting}[language=Java, caption={Java Example}, label=lst:Hello-World]
public class World {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
\end{lstlisting}
^D
[CodeBlock ("lst:Hello-World",["java"],[("language","Java"),("caption","Java Example"),("label","lst:Hello-World")]) "public class World {\n public static void main(String[] args) {\n System.out.println(\"Hello World\");\n }\n}"]
```
```
% pandoc -f latex -t native
\begin{lstlisting}[language=Java, escapechar=|, caption={Java Example}, label=lst:Hello-World]
public class World {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
\end{lstlisting}
^D
[CodeBlock ("lst:Hello-World",["java"],[("language","Java"),("escapechar","|"),("caption","Java Example"),("label","lst:Hello-World")]) "public class World {\n public static void main(String[] args) {\n System.out.println(\"Hello World\");\n }\n}"]
```