diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-05 19:38:11 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-05 19:50:19 +0300 |
commit | 7da6e4390cb6d812b67dca6720bb56f3963c05d5 (patch) | |
tree | 46f55a5c7aaea3afcb1593527cfe2ddb3b631d3a /test/Tests/Writers | |
parent | 7518e8e00e2711b63487a76321a1a1442488e5d3 (diff) | |
download | pandoc-7da6e4390cb6d812b67dca6720bb56f3963c05d5.tar.gz |
Muse writer: expand math before inline list normalization
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r-- | test/Tests/Writers/Muse.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs index 0b8a08258..df02236ac 100644 --- a/test/Tests/Writers/Muse.hs +++ b/test/Tests/Writers/Muse.hs @@ -332,6 +332,7 @@ tests = [ testGroup "block elements" [ "inline math" =: math "2^3" =?> "2<sup>3</sup>" , "display math" =: displayMath "2^3" =?> "2<sup>3</sup>" , "multiple letters in inline math" =: math "abc" =?> "<em>abc</em>" + , "expand math before normalization" =: math "[" <> str "2]" =?> "<verbatim>[2]</verbatim>" ] , "raw inline" =: rawInline "html" "<mark>marked text</mark>" |