summaryrefslogtreecommitdiff
path: root/test/Tests/Writers/Muse.hs
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2017-11-22 16:13:00 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2017-11-24 12:35:25 +0300
commitfe7443654006e1b461aa480445c3ef58fa942b07 (patch)
tree29b48b32467eaa339a2477be4063f5609f9f5b1c /test/Tests/Writers/Muse.hs
parentbd3feb864fb482a074f0c9930d479e01621f3132 (diff)
Muse writer: test that inline math conversion result is normalized
Without normalization this test produced <em>a</em><em>b</em><em>c</em>
Diffstat (limited to 'test/Tests/Writers/Muse.hs')
-rw-r--r--test/Tests/Writers/Muse.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index b5931b7db..77e741534 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -313,6 +313,7 @@ tests = [ testGroup "block elements"
, testGroup "math"
[ "inline math" =: math "2^3" =?> "2<sup>3</sup>"
, "display math" =: displayMath "2^3" =?> "<verse>2<sup>3</sup></verse>"
+ , "multiple letters in inline math" =: math "abc" =?> "<em>abc</em>"
]
, "raw inline"
=: rawInline "html" "<mark>marked text</mark>"