xsl-list
[Top] [All Lists]

[xsl] make it single line

2007-05-02 23:45:40
Hi
I want to flatten the XML node structure to single line,
I tried indent=no and it does not work for me.
Please any suggestions.
I use the following xslt

<?xml version="1.0"  encoding='UTF-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xml"  indent="no" />
 <xsl:template match="*">
 <xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

input
<node1>
</Item1>
</Item1>
</Item1>
</Item1>
</Item1>
</Item1>
</Item1>
</node1>
output
<node1></Item1></Item1></Item1>..</node1>

Regards,
Senthil

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>