diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-25 17:27:54 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-25 18:31:28 +0300 |
commit | c6232d0f7d4aa18db4870b1fdb8ba701822e2889 (patch) | |
tree | 5c9fc361437b055df56b675bc925f16dbe3646e1 /test | |
parent | 2582de5384c80369a0bf5dcefba641505e1ca7be (diff) | |
download | pandoc-c6232d0f7d4aa18db4870b1fdb8ba701822e2889.tar.gz |
Muse reader: require block <literal> tags to be on separate lines
Diffstat (limited to 'test')
-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 45dd6bc34..3dc9b0917 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -210,6 +210,9 @@ tests = [ test emacsMuse "Inline literal" ("Foo<literal style=\"html\">lit</literal>bar" =?> para (text "Foo" <> rawInline "html" "lit" <> text "bar")) + , test emacsMuse "Single inline literal in paragraph" + ("<literal style=\"html\">lit</literal>" =?> + para (rawInline "html" "lit")) ] ] |