diff options
Diffstat (limited to '')
-rw-r--r-- | tests/character_escape.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/character_escape.rs b/tests/character_escape.rs index c81760d..9e2a5c8 100644 --- a/tests/character_escape.rs +++ b/tests/character_escape.rs @@ -24,7 +24,7 @@ fn character_escape() { assert_eq!( micromark( - "\\*not emphasized*\n\\<br/> not a tag\n\\[not a link](/foo)\n\\`not code`\n1\\. not a list\n\\* not a list\n\\# not a heading\n\\[foo]: /url \"not a reference\"\n\\ö not a character entity" + "\\*not emphasized*\n\\<br/> not a tag\n\\[not a link](/foo)\n\\`not code`\n1\\. not a list\n\\* not a list\n\\# not a heading\n\\[foo]: /url \"not a reference\"\n\\ö not a character entity" ), "<p>*not emphasized*\n<br/> not a tag\n[not a link](/foo)\n`not code`\n1. not a list\n* not a list\n# not a heading\n[foo]: /url "not a reference"\n&ouml; not a character entity</p>", "should escape other constructs" |