diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-06 19:16:36 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-06 19:57:24 +0300 |
commit | 0b7001c3188c9333402693659a13e1003c2a31b4 (patch) | |
tree | 301636f7a83dc9d0259c695e4dd7b7332373c66a /test | |
parent | efe99b5e97a260c53644fb2fc32b8e87e569de7f (diff) | |
download | pandoc-0b7001c3188c9333402693659a13e1003c2a31b4.tar.gz |
Muse reader: close the </quote> in indented tag test
There is already a separate test for unclosed </quote>.
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Readers/Muse.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs index 22ff43c6f..73abff213 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -1383,7 +1383,8 @@ tests = , " <verse>" , " </quote>" , " </verse>" + , "</quote>" ] =?> - para "<quote>" <> bulletList [ para "Foo" <> para "</quote>" <> para "bar" <> lineBlock [ "</quote>" ] ] + blockQuote (bulletList [ para "Foo" <> para "</quote>" <> para "bar" <> lineBlock [ "</quote>" ] ]) ] ] |