Portability | portable |
---|---|
Stability | experimental |
Maintainer | Uwe Schmidt (uwe@fh-wedel.de) |
Safe Haskell | None |
State arrows for document output
- putXmlDocument :: Bool -> String -> IOStateArrow s XmlTree XmlTree
- putXmlTree :: String -> IOStateArrow s XmlTree XmlTree
- putXmlSource :: String -> IOStateArrow s XmlTree XmlTree
- encodeDocument :: Bool -> Bool -> String -> IOStateArrow s XmlTree XmlTree
- encodeDocument' :: ArrowXml a => Bool -> Bool -> String -> a XmlTree XmlTree
Documentation
putXmlDocument :: Bool -> String -> IOStateArrow s XmlTree XmlTreeSource
Write the contents of a document tree into an output stream (file or stdout).
If textMode is set, writing is done with Haskell string output, else (default) writing is done with lazy ByteString output
putXmlTree :: String -> IOStateArrow s XmlTree XmlTreeSource
write the tree representation of a document to a file
putXmlSource :: String -> IOStateArrow s XmlTree XmlTreeSource
write a document with indentaion and line numers
encodeDocument :: Bool -> Bool -> String -> IOStateArrow s XmlTree XmlTreeSource