summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/textcolor.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/command/textcolor.md b/test/command/textcolor.md
index 59b0f6a16..47c41e62d 100644
--- a/test/command/textcolor.md
+++ b/test/command/textcolor.md
@@ -33,3 +33,20 @@ Hello \textcolor{blue}{\textbf{World}}
[[Para [Str "Item",Space,Str "1"]]
,[Para [Str "Item",Space,Str "2"]]]]]
```
+
+```
+% pandoc -f latex -t native
+\textcolor{blue}{
+\begin{itemize}
+ \item Item 1
+ \item Item 2
+\end{itemize}
+} some more text
+^D
+[Div ("",[],[("style","color: blue")])
+ [BulletList
+ [[Para [Str "Item",Space,Str "1"]]
+ ,[Para [Str "Item",Space,Str "2"]]]]
+,Para [Str "some",Space,Str "more",Space,Str "text"]]
+```
+