aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2013-10-12 21:11:21 -0700
committerJohn MacFarlane <[email protected]>2013-10-12 21:11:21 -0700
commit01ed46da3019744c2e4da0c62b196c67a69fe308 (patch)
tree37b33f2326f187afc8f613a286f09551188c4729
parent91cc0b398e8ede0bd51146577f6cdd8212bf222a (diff)
Escape text in rawText
-rw-r--r--src/Text/Pandoc/Writers/Sable.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Writers/Sable.hs b/src/Text/Pandoc/Writers/Sable.hs
index c350791ed..94044f062 100644
--- a/src/Text/Pandoc/Writers/Sable.hs
+++ b/src/Text/Pandoc/Writers/Sable.hs
@@ -122,9 +122,7 @@ punctuationBreak c s =
rawText :: String -> Element
rawText s = dummyElement $ CData
{
- -- This is correct, but Festival doesn't seem to unescape the text.
- -- cdVerbatim = CDataText,
- cdVerbatim = CDataRaw,
+ cdVerbatim = CDataText,
cdData = s,
cdLine = Nothing
}