aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-10-28 21:37:57 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-10-28 21:37:57 -0700
commit8d55dc10cd61ba6ddc9067eaff6246a41557632b (patch)
tree55c0cb1bb55d9e47388715369ae22e84f809fec3 /test
parent7a30eae6935057a9395e5346a1635230389004f5 (diff)
downloadpandoc-8d55dc10cd61ba6ddc9067eaff6246a41557632b.tar.gz
Roff tokenizer: better handling of escapes.
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Readers/Man.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Readers/Man.hs b/test/Tests/Readers/Man.hs
index d48919e54..c1bf10c80 100644
--- a/test/Tests/Readers/Man.hs
+++ b/test/Tests/Readers/Man.hs
@@ -63,12 +63,12 @@ tests = [
text " ok")
, "skip" =:
"a\\%\\{\\}\\\n\\:b\\0"
- =?> (para $ str "ab")
+ =?> (para $ str "ab\8199")
, "replace" =:
"\\-\\ \\\\\\[lq]\\[rq]\\[em]\\[en]\\*(lq\\*(rq"
=?> (para $ text "- \\“”—–“”")
, "replace2" =:
- "\\t\\e\\`\\^\\|\\'" =?> (para $ text "\\` `")
+ "\\t\\e\\`\\^\\|\\'" =?> (para $ text "\\`\8202\8198`")
, "comment with \\\"" =:
"Foo \\\" bar\n" =?> (para $ text "Foo")
, "comment with \\#" =: