CDATA pretty print outputs too many new lines
---------------------------------------------
Key: XERCESC-1823
URL: https://issues.apache.org/jira/browse/XERCESC-1823
Project: Xerces-C++
Issue Type: Bug
Affects Versions: 2.8.0, 3.0.0
Reporter: Mathieu Champlon
Priority: Minor
Running DOMPrint on the following XML sample file :
<root><![CDATA[some data]]></root>
Using the following command line :
$ ./DOMPrint.exe -wfpp=on cdata.xml
Produces the following output :
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<root>
<![CDATA[some data]]>
</root>
Whereas I had expected :
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<root>
<![CDATA[some data]]>
</root>
Thanks !
MAT.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]