Tinyxml And Preserving Html Entities
I'm using TinyXml to parse some XML that has some HTML Entities embedded in text nodes. I realize that TinyXML is just an XML parser, so I don't expect or even want TinyXML to do a
Solution 1:
If you look at the TinyXML documentation you'll see that it recognizes only five character entities (ü
is not one of them), plus Unicode code point syntax  
or  
.
Post a Comment for "Tinyxml And Preserving Html Entities"