diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-03 11:28:20 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-03 11:28:20 -0700 |
commit | 513058a24eebb97a849e7eb5051e29ce2f6642c6 (patch) | |
tree | bf1d09f5bdc19ae447c48563e72a2a3d35777f56 /test/command | |
parent | 0fe635d3ecdc362f11c380c2e0b9518aa03424e9 (diff) | |
download | pandoc-513058a24eebb97a849e7eb5051e29ce2f6642c6.tar.gz |
XML: change toEntities to emit numerical hex character references.
Previously decimal references were used.
But Polyglot Markup prefers hex. See #5718.
This affects the output of pandoc with `--ascii`.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/ascii.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command/ascii.md b/test/command/ascii.md index 214e10f13..0826d7414 100644 --- a/test/command/ascii.md +++ b/test/command/ascii.md @@ -2,7 +2,7 @@ pandoc -t html --ascii äéıå ^D -<p>äéıå</p> +<p>äéıå</p> ``` ``` @@ -33,7 +33,7 @@ pandoc -t docbook --ascii äéıå ^D <para> - äéıå + äéıå </para> ``` @@ -41,7 +41,7 @@ pandoc -t docbook --ascii pandoc -t jats --ascii äéıå ^D -<p>äéıå</p> +<p>äéıå</p> ``` ``` |