xml 1.3.3 → 1.3.4
raw patch · 2 files changed
+5/−2 lines, 2 files
Files
- Text/XML/Light/Output.hs +4/−1
- xml.cabal +1/−1
Text/XML/Light/Output.hs view
@@ -120,7 +120,10 @@ '>' -> showString ">" '&' -> showString "&" '"' -> showString """- '\'' -> showString "'"+ -- we use ' instead of ' because IE apparently has difficulties+ -- rendering ' in xhtml.+ -- Reported by Rohan Drape <rohan.drape@gmail.com>.+ '\'' -> showString "'" -- XXX: Is this really wortherd? -- We could deal with these issues when we convert characters to bytes. _ | (oc <= 0x7f && isPrint c) || c == '\n' || c == '\r' -> showChar c
xml.cabal view
@@ -1,5 +1,5 @@ Name: xml-Version: 1.3.3+Version: 1.3.4 Homepage: http://code.galois.com Synopsis: A simple XML library. Description: A simple XML library.