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 anything to the entities. In fact I want it to leave them alone. If I have some XML like this: ... <blah>ü</blah> ... Calling Value() on the TiXmlText instance I get: "uuml;" So TinyXml always seems to remove the ampersand. Is there any way I can get it to leave it alone so it comes out unchanged? Appreciate any