I added to the XSLT Mapping file a customize header, example:
<Records>
<Header>
<H1>Customize Header</H1>
</Header>
<Elements>
<Value1>Value 1</Value1>
</Elements>
</Records>
But when i use the XML to CSV converter the iflow gives me a .csv file with a blank line between the header (Customize Header) and the elements (Value1).
CSV File output:
Customize Header
------Blank line-----
Value 1
Is there a way to remove the blank line?
Regards,