rc = rc + node.data
return rc
-def filterXMLString(text):
- # TODO: better solutions?
- return text.replace('"', """).replace('<', '<')
+def stringToXML(text):
+ return text.replace('&', '&').replace('<', '<').replace('>', '>').replace("'", ''').replace('"', '"')