diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-01-19 14:16:08 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-01-19 14:16:20 +0300 |
commit | 7680e9b9642c1bade4152e4c833003688c439ca1 (patch) | |
tree | bdf0d6663cefd83d3e5a331241b7d98b38e4ad26 /test/Tests/Readers | |
parent | 4a5801b823e1fbd3d5b208b97acce78859c45b0d (diff) | |
download | pandoc-7680e9b9642c1bade4152e4c833003688c439ca1.tar.gz |
Muse reader: require only one space for nested definition list indentation
Diffstat (limited to 'test/Tests/Readers')
-rw-r--r-- | test/Tests/Readers/Muse.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs index 198b95fc5..6cadd45bc 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -960,6 +960,9 @@ tests = definitionList [ ("Term1", [ para "This is a first definition\nAnd it has two lines;\nno, make that three."]) , ("Term2", [ para "This is a second definition"]) ]) + , "Nested definition list" =: + " Foo :: bar :: baz" =?> + definitionList [ ("Foo", [ definitionList [ ("bar", [ para "baz" ])]])] , "Two blank lines separate definition lists" =: T.unlines [ " First :: list" |