XML Formatting Splits Node Text
Posted: Mon Jul 15, 2024 2:56 pm
I faced an XSLT issue earlier I was trying to resolve when I finally realized that oxygen editor caused the issue with Format & Indent of XML.
Here is pre format & indent:
Here is post format & indent:
The problem with this is that is is creating new lines in the middle of node text that breaks XSLT. Is there an option to format and not do this? If the answer is no, please add this feature.
Here is pre format & indent:
Code: Select all
<rslt:file rslt:isfolder="false"><rslt:name>04-Doodlin'.flac</rslt:name><rslt:path>E:\Art Blakey\1991, The History of Art Blakey And The Jazz Messengers\</rslt:path><rslt:modified>7/6/2024 12:16:07 AM</rslt:modified><rslt:created>7/6/2024 12:16:07 AM</rslt:created><rslt:lastaccess>7/6/2024 12:16:07 AM</rslt:lastaccess><rslt:modifiedft>133647129670000000</rslt:modifiedft><rslt:createdft>133647129670000000</rslt:createdft><rslt:lastaccessft>133647129670000000</rslt:lastaccessft><rslt:size>42,990.00 KB</rslt:size><rslt:sizebytes>44021520</rslt:sizebytes><rslt:attr>4225</rslt:attr><rslt:type>FLAC Audio File (VLC)</rslt:type></rslt:file>
Code: Select all
<rslt:file rslt:isfolder="false">
<rslt:name>04-Doodlin'.flac</rslt:name>
<rslt:path>E:\Art Blakey\1991, The History of Art Blakey And The Jazz
Messengers\</rslt:path>
<rslt:modified>7/6/2024 12:16:07 AM</rslt:modified>
<rslt:created>7/6/2024 12:16:07 AM</rslt:created>
<rslt:lastaccess>7/6/2024 12:16:07 AM</rslt:lastaccess>
<rslt:modifiedft>133647129670000000</rslt:modifiedft>
<rslt:createdft>133647129670000000</rslt:createdft>
<rslt:lastaccessft>133647129670000000</rslt:lastaccessft>
<rslt:size>42,990.00 KB</rslt:size>
<rslt:sizebytes>44021520</rslt:sizebytes>
<rslt:attr>4225</rslt:attr>
<rslt:type>FLAC Audio File (VLC)</rslt:type>
</rslt:file>