summaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorMarc Schreiber <schrieveslaach@online.de>2017-05-23 17:31:42 -0300
committerMarc Schreiber <schrieveslaach@online.de>2017-05-23 17:31:42 -0300
commit29a4bdc68131d3925a55e0428b35c6a4f75f86e0 (patch)
tree475565061889f1a200d7877bcb78d5abef925d25 /test/command
parent4ed6d9165672917cb9450578c8f7d84121ecfc24 (diff)
Add suggestions of @jgm: parse bracketed stuff as inlines
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"]]
+```
+