diff options
author | Marc Schreiber <schrieveslaach@online.de> | 2017-05-23 17:36:27 -0300 |
---|---|---|
committer | Marc Schreiber <schrieveslaach@online.de> | 2017-05-23 17:36:27 -0300 |
commit | b1d0c61f2dd5e89f4cbc8f4d868704bf681a7086 (patch) | |
tree | 95df21b482f152d3de46cc9a3c35dda39c2adebe /test | |
parent | 29a4bdc68131d3925a55e0428b35c6a4f75f86e0 (diff) | |
download | pandoc-b1d0c61f2dd5e89f4cbc8f4d868704bf681a7086.tar.gz |
Add another test to make sure that textcolor parsing is working in the inside of a paragraph
Diffstat (limited to 'test')
-rw-r--r-- | test/command/textcolor.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/command/textcolor.md b/test/command/textcolor.md index 47c41e62d..51d05b9f1 100644 --- a/test/command/textcolor.md +++ b/test/command/textcolor.md @@ -19,6 +19,14 @@ Hello \textcolor{blue}{\textbf{World}} [Para [Str "Hello",Space,Span ("",[],[("style","color: blue")]) [Strong [Str "World"]]]] ``` + +``` +% pandoc -f latex -t native +Hello \textcolor{blue}{\textbf{World}}. +^D +[Para [Str "Hello",Space,Span ("",[],[("style","color: blue")]) [Strong [Str "World"]],Str "."]] +``` + ``` % pandoc -f latex -t native \textcolor{orange}{ |