Hello! I am trying to build an xml message where some tags need to have a value that includes CR LF chars. I have made the patch change in ReadValue function and I have the following: TiXmlDocument XMLdoc; TiXmlPrinter XMLprinter; TiXmlElement *pRoot, *pData; TiXmlText *pText; char XMLBuffer[624] = { 0 }; TiXmlBase::SetCondenseWhiteSpace(false); pRoot = new TiXmlElement("MyTest"); XMLdoc.LinkEndChild(pRoot); pData = new TiXmlElement("MyTag"); // Tag Content char receipt_line[512] = { 0 }; strcpy(receipt_line,...