aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-04-15 16:07:43 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-04-15 16:28:45 +0300
commit17767bd29d54883364d4d9bdee417973ac0a10ac (patch)
treef60e995d0df021467b24e7e7cef5b33b6b6c2348 /test
parent9cc2bf0295a66182223c9ec421a4755d1acebeb1 (diff)
downloadpandoc-17767bd29d54883364d4d9bdee417973ac0a10ac.tar.gz
Muse writer: escape strings starting with space
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Writers/Muse.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index 41c846b1b..44fdd5b7e 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -112,6 +112,15 @@ tests = [ testGroup "block elements"
, " <verbatim></verbatim> :: second description"
, " <verbatim></verbatim> :: third description"
]
+ , "definition list terms starting with space" =:
+ definitionList [ (text "first definition", [plain $ text "first description"])
+ , (space <> str "foo", [plain $ text "second description"])
+ , (str " > bar", [plain $ text "third description"])
+ ]
+ =?> unlines [ " first definition :: first description"
+ , " <verbatim></verbatim> foo :: second description"
+ , " <verbatim></verbatim> > bar :: third description"
+ ]
]
-- Test that lists of the same type and style are separated with two blanklines
, testGroup "sequential lists"