id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 8566,Enable writing of CDATA,Wolf A. Heidrich ,Sebastian Redl,"If one tries to write a node using write_xml ]]> the characters <> (and probably & etc.) get escaped in HTML style. The output file will contain <![CDATA[<>]]> Might it be a solution to introduce another sub-key (like ) and write code analogue to function write_xml_comment like {{{ template void write_xml_xcdata(std::basic_ostream &stream, const std::basic_string &s, int indent, bool separate_line, const xml_writer_settings & settings ) { typedef typename std::basic_string Str; if (separate_line) write_xml_indent(stream,indent,settings); stream << Ch('<') << Ch('!') << Ch('[') << Ch('C') << Ch('D') << Ch('A') << Ch('T') << Ch('A') << Ch('['); stream << s; stream << Ch(']') << Ch(']') << Ch('>'); if (separate_line) stream << Ch('\n'); } }}}",Feature Requests,new,To Be Determined,property_tree,,Problem,,,