I'm using the transform to output XMLSS (for Excel) and it is working
very well. I notice that the output is one long XML stream with no
whitespace or carriage returns etc.
Is there a way to have the XML that is output "formatted" so that it
is a bit more human-readable? I would like to find a quick and easy
solution, as opposed to adding special tags everywhere in the XSLT
where I would like whitespace generated.
Thanks in advance...
Colin Savage - 22 Oct 2003 08:54 GMT
<xsl:stylesheet ....>
<xsl:output indent="yes"/>
....
</xsl:stylesheet>
indent : Specifies additional white space to add when outputting the result
tree; the value must be yes or no.
Hope this helps
Colin
> I'm using the transform to output XMLSS (for Excel) and it is working
> very well. I notice that the output is one long XML stream with no
[quoted text clipped - 6 lines]
>
> Thanks in advance...