diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-01-22 16:24:44 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-01-22 16:24:44 +0300 |
commit | 288065cfd44eb02f9ef4e6c9b901e14776246dbb (patch) | |
tree | 6f82b583c8d12f5ac04712fdfcd1116490fc54ad /test | |
parent | b818623d42402027236d04a3300956f3ad3f1295 (diff) | |
download | pandoc-288065cfd44eb02f9ef4e6c9b901e14776246dbb.tar.gz |
Muse writer: indent lists inside Div
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Writers/Muse.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs index 158f80f67..ee4c76587 100644 --- a/test/Tests/Writers/Muse.hs +++ b/test/Tests/Writers/Muse.hs @@ -282,7 +282,9 @@ tests = [ testGroup "block elements" , " |+ Table 1 +|" ] ] - -- Div is trivial + , "div with bullet list" =: + divWith nullAttr (bulletList [para $ text "foo"]) =?> + unlines [ " - foo" ] -- Making sure bullets are indented -- Null is trivial ] , testGroup "inline elements" |