aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Jira.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Tests/Readers/Jira.hs b/test/Tests/Readers/Jira.hs
index 220bd8069..0deec3865 100644
--- a/test/Tests/Readers/Jira.hs
+++ b/test/Tests/Readers/Jira.hs
@@ -96,6 +96,10 @@ tests =
"HCO ~3~^-^" =?>
para ("HCO " <> subscript "3" <> superscript "-")
+ , "color" =:
+ "This is {color:red}red{color}." =?>
+ para ("This is " <> spanWith ("", [], [("color", "red")]) "red" <> ".")
+
, "linebreak" =:
"first\nsecond" =?>
para ("first" <> linebreak <> "second")