import Data.List import Text.XML.Light xmlDOM :: String -> String xmlDOM txt = showTopElement $ Element (unqual "root") [] [ Elem $ Element (unqual "element") [] [Text $ CData CDataText txt Nothing] Nothing ] Nothing