diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-07 19:11:27 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-07 19:11:27 +0300 |
commit | ff8e59a17412e7a083ab5ce53a1af2db59025a44 (patch) | |
tree | 2ef21e718e3bd62f12066ba576c8b50a023b5a47 /test/Tests | |
parent | f8608b418afcb1cfe8ccb55abf31f33f7bc7efb3 (diff) | |
download | pandoc-ff8e59a17412e7a083ab5ce53a1af2db59025a44.tar.gz |
Muse writer: output smallcaps as emphasis
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/Muse.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs index 68eb9759f..bbcb3dc61 100644 --- a/test/Tests/Writers/Muse.hs +++ b/test/Tests/Writers/Muse.hs @@ -327,7 +327,7 @@ tests = [ testGroup "block elements" ] , "superscript" =: superscript (text "foo") =?> "<sup>foo</sup>" , "subscript" =: subscript (text "foo") =?> "<sub>foo</sub>" - , "smallcaps" =: smallcaps (text "foo") =?> "foo" + , "smallcaps" =: smallcaps (text "foo") =?> "<em>foo</em>" , "single quoted" =: singleQuoted (text "foo") =?> "‘foo’" , "double quoted" =: doubleQuoted (text "foo") =?> "“foo”" -- Cite is trivial |