diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-03 03:32:37 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-03 03:33:02 +0300 |
commit | a71a1fec69104f35b3722e423a741dc68076f3db (patch) | |
tree | 9b58508d10a626553ea1e222acd56cf8ea573ce7 /test/Tests/Readers | |
parent | 7507117f150dd6d36835cf86ae0872b8af302af1 (diff) | |
download | pandoc-a71a1fec69104f35b3722e423a741dc68076f3db.tar.gz |
Muse reader: fix indentation requirements for footnote continuations
Diffstat (limited to 'test/Tests/Readers')
-rw-r--r-- | test/Tests/Readers/Muse.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs index 4528ac4b1..508d79e18 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -637,6 +637,16 @@ tests = text " footnotes" <> note (para "Second footnote")) <> para (text "Not a note") + + -- Verse requires precise indentation, so it is good to test indentation requirements + , "Note continuation with verse" =: + T.unlines [ "Foo[1]" + , "" + , "[1] Bar" + , "" + , " > Baz" + ] =?> + para ("Foo" <> note (para "Bar" <> lineBlock ["Baz"])) , test emacsMuse "Emacs multiparagraph footnotes" (T.unlines [ "First footnote reference[1] and second footnote reference[2]." |