aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Writers
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-03-07 19:11:27 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-03-07 19:11:27 +0300
commitff8e59a17412e7a083ab5ce53a1af2db59025a44 (patch)
tree2ef21e718e3bd62f12066ba576c8b50a023b5a47 /test/Tests/Writers
parentf8608b418afcb1cfe8ccb55abf31f33f7bc7efb3 (diff)
downloadpandoc-ff8e59a17412e7a083ab5ce53a1af2db59025a44.tar.gz
Muse writer: output smallcaps as emphasis
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r--test/Tests/Writers/Muse.hs2
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