Reputation: 1
I'm using Eclipse IDE to write XSLT code to extract data from XML's to a CSV with a Header line. The issue I have is, if I give a line break in the code to fit the code in to the IDE window the output gives the same line break - I need to have it in a single line in the output (it's a comma delimited CSV).
Example:
Expected Output: A,B,C,D,E
1:<p>
Header line in XSLT:<p>
A,B,C,D,E <p>
Output:<p>
A,B,C,D,E
<p>
2:<p>
Header line in XSLT:<p>
A,B,<p>
C,D<p>
Output:<p>
A,B,<p>
C,D
Upvotes: 0
Views: 181