MerrimanInd / drawpyo

A Python library for programmatically generating Draw.io charts.
https://pypi.org/project/drawpyo/
MIT License
235 stars 14 forks source link

Need to escape illegal characters in XML #1

Closed MerrimanInd closed 1 year ago

MerrimanInd commented 1 year ago

These are some HTML type escapes that may work: xmlize = {} xmlize[">"] = ">" xmlize["<"] = "<" xmlize["\n"] = "
"

MerrimanInd commented 1 year ago

Added escapes for all XML illegal characters in XML_Base class