DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=23147>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=23147 Carriage returns in text nodes double after being transformed/parsed. ------- Additional Comments From [EMAIL PROTECTED] 2004-03-15 08:30 ------- Thanks for the comments. If I understand correctly, for my code to function properly on all platforms, irrespective of newline representation, I should check what the platform-specific newline representation is (System.getProperty("line.separator")). If it's \r\n, I should append only \n if I wish for a newline, because \n gets transformed into \r\n in that case? If the newline representation is \n, will using the sequence \r\n also produce \r\n in the transformed output (in text output method)?
