diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-01-01 04:12:00 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2010-01-01 04:12:00 +0000 |
commit | c7149d317fb644187e5677888b33369227205717 (patch) | |
tree | 100163843b8013732e10a40d7a9137bdbd96fe3d | |
parent | 41aff1cf5572bb3840aaeaecf1e21fe36e181730 (diff) | |
download | pandoc-c7149d317fb644187e5677888b33369227205717.tar.gz |
Docbook writer: use unicode instead of entities.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1769 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | src/Text/Pandoc/Writers/Docbook.hs | 6 | ||||
-rw-r--r-- | tests/writer.docbook | 13 |
2 files changed, 9 insertions, 10 deletions
diff --git a/src/Text/Pandoc/Writers/Docbook.hs b/src/Text/Pandoc/Writers/Docbook.hs index 4542176f1..294c043e2 100644 --- a/src/Text/Pandoc/Writers/Docbook.hs +++ b/src/Text/Pandoc/Writers/Docbook.hs @@ -244,9 +244,9 @@ inlineToDocbook opts (Quoted _ lst) = inlineToDocbook opts (Cite _ lst) = inlinesToDocbook opts lst inlineToDocbook _ Apostrophe = char '\'' -inlineToDocbook _ Ellipses = text "…" -inlineToDocbook _ EmDash = text "—" -inlineToDocbook _ EnDash = text "–" +inlineToDocbook _ Ellipses = text "…" +inlineToDocbook _ EmDash = text "—" +inlineToDocbook _ EnDash = text "–" inlineToDocbook _ (Code str) = inTagsSimple "literal" $ text (escapeStringForXML str) inlineToDocbook opts (Math _ str) = inlinesToDocbook opts $ readTeXMath str diff --git a/tests/writer.docbook b/tests/writer.docbook index 46d02f765..d4d771bc3 100644 --- a/tests/writer.docbook +++ b/tests/writer.docbook @@ -605,7 +605,7 @@ These should not be escaped: \$ \\ \> \[ \{ Should not be a list item: </para> <para> - M.A. 2007 + M.A. 2007 </para> <para> B. Williams @@ -1025,12 +1025,11 @@ Blah <para> Superscripts: a<superscript>bc</superscript>d a<superscript><emphasis>hello</emphasis></superscript> - a<superscript>hello there</superscript>. + a<superscript>hello there</superscript>. </para> <para> Subscripts: H<subscript>2</subscript>O, - H<subscript>23</subscript>O, - H<subscript>many of them</subscript>O. + H<subscript>23</subscript>O, H<subscript>many of them</subscript>O. </para> <para> These should not be superscripts or subscripts, because of the @@ -1060,13 +1059,13 @@ Blah <quote><ulink url="http://example.com/?foo=1&bar=2">quoted link</ulink></quote>. </para> <para> - Some dashes: one—two — three—four — five. + Some dashes: one—two — three—four — five. </para> <para> - Dashes between numbers: 5–7, 255–66, 1987–1999. + Dashes between numbers: 5–7, 255–66, 1987–1999. </para> <para> - Ellipses…and…and…. + Ellipses…and…and…. </para> </section> <section id="latex"> |