-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | A really simple XML parser -- -- A really simple and trivial XML parser using the Parsec library @package really-simple-xml-parser @version 0.2.0.0 module RSXP data XMLAST Element :: Name -> [Attribute] -> [XMLAST] -> XMLAST Body :: String -> XMLAST Comment :: String -> XMLAST parseXML :: String -> XMLAST instance Show XMLAST