diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2019-02-18 15:21:17 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2019-02-18 15:21:32 +0300 |
commit | 2c7c8a6f407a6299f7f7345ca9203fae6fb4bcde (patch) | |
tree | eb734becf1ef9a64e49f4c2ece571c20f27665d0 /test/Tests/Writers | |
parent | 073db7ac1f79437468702073bfbd97166b48753b (diff) | |
download | pandoc-2c7c8a6f407a6299f7f7345ca9203fae6fb4bcde.tar.gz |
Muse writer: escape secondary notes
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 c2439b1a2..834422a59 100644 --- a/test/Tests/Writers/Muse.hs +++ b/test/Tests/Writers/Muse.hs @@ -428,6 +428,7 @@ tests = [ testGroup "block elements" [ testGroup "string" [ "string" =: str "foo" =?> "foo" , "escape footnote" =: str "[1]" =?> "<verbatim>[1]</verbatim>" + , "escape secondary note" =: str "{1}" =?> "<verbatim>{1}</verbatim>" , "do not escape brackets" =: str "[12ab]" =?> "[12ab]" , "escape verbatim close tag" =: str "foo</verbatim>bar" =?> "<verbatim>foo<</verbatim><verbatim>/verbatim>bar</verbatim>" |