ignis32
Results
1
issues of
ignis32
Code: ``` import xmltodict test_xml=""" afafafa – """ print(test_xml) print (xmltodict.unparse( xmltodict.parse(test_xml) )) ``` Output: ``` afafafa – afafafa – ``` Basically, html-encoded en-dash is unescaped when parsed, but is...