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 /src | |
| 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
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/Writers/Docbook.hs | 6 | 
1 files changed, 3 insertions, 3 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 | 
