XML Carriage return encoding

To insert a CR into XML, you need to use its character entity 
.

This is because compliant XML parsers must, before parsing, translate CRLF and any CR not followed by a LF to a single LF. This behavior is defined in the End-of-Line handling section of the XML 1.0 specification.

Leave a Comment