summaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-01-29 23:27:40 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-01-30 00:33:02 +0300
commit9ff8bc64f9c873e2bcae6a1a46f71af9287d6753 (patch)
tree5dd6f3c10d5e9626da153f3dfb4e520f7aa18e11 /test/Tests
parentb7d8930dc097defcae754120a4fa0d6727c9b265 (diff)
Muse writer: don't wrap displayMath into <verse>
<verse> is a block tag and displayMath is an inline element. Writing <verse> around displayMath could result in nested <verse> tags.
Diffstat (limited to 'test/Tests')
-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 fda5c7c9e..f330d14c5 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -330,7 +330,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>"
+ , "display math" =: displayMath "2^3" =?> "2<sup>3</sup>"
, "multiple letters in inline math" =: math "abc" =?> "<em>abc</em>"
]
, "raw inline"