The XML formatter breaks up mixed text nodes, and inserts spaces and line breaks inside text contents.
There is no option to disable or control this behaviour.
Example of original xml:
<LABEL>some text<NBSP/>and other text</LABEL>
Changed to this:
<LABEL>
some text
<NBSP/>
and other text
</LABEL>
Unwanted side effect:
the original text content of the text node is altered and extra space characters and line breaks are added.
The XML formatter breaks up mixed text nodes, and inserts spaces and line breaks inside text contents. There is no option to disable or control this behaviour.
Example of original xml:
Changed to this:
Unwanted side effect: the original text content of the text node is altered and extra space characters and line breaks are added.