Kaydet (Commit) 1018d69b authored tarafından Luboš Luňák's avatar Luboš Luňák

escape \n and \r too in escapeXml()

üst c4fbb036
......@@ -105,6 +105,8 @@ namespace sax_fastparser {
case '&': sBuf.appendAscii( "&" ); break;
case '\'': sBuf.appendAscii( "'" ); break;
case '"': sBuf.appendAscii( """ ); break;
case '\n': sBuf.appendAscii( "
" ); break;
case '\r': sBuf.appendAscii( "
" ); break;
default: sBuf.append( c ); break;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment