diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-08-05 09:20:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-08-05 09:21:45 -0700 |
commit | f7dc3e7487d80847b376c132acc985ccb9833bc2 (patch) | |
tree | 62cc02c2c1a9f6d1f4cfd92c84b9f78bf71add93 /test | |
parent | 5866892a9d9a17403894cea97370e1c2be4fcb03 (diff) | |
download | pandoc-f7dc3e7487d80847b376c132acc985ccb9833bc2.tar.gz |
Added test case for #4669 to repository.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/4669.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/command/4669.md b/test/command/4669.md new file mode 100644 index 000000000..b9db45b17 --- /dev/null +++ b/test/command/4669.md @@ -0,0 +1,29 @@ +``` +% pandoc -f latex -t native +{\tt <-} + +\begin{verbatim} + while (n > 0) { +\end{verbatim} +^D +[Para [Span ("",[],[]) [Str "<-"]] +,CodeBlock ("",[],[]) " while (n > 0) {"] +``` + +``` +% pandoc -f latex -t native +\begin{itemize} +\item<1> one +\item<2-3,5> two +\item<2| @alert> three +\item<handout> four +\item<beamer:2> five +\end{itemize} +^D +[BulletList + [[Para [Str "one"]] + ,[Para [Str "two"]] + ,[Para [Str "three"]] + ,[Para [Str "four"]] + ,[Para [Str "five"]]]] +``` |