I want to ask how I can transform the following XML using XSLT:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="UTF-8"
omit-xml-declaration="no" indent="no" />
<xsl:template match="/" />
</xsl:stylesheet>
source XML:
<root>
<header>
<version>1</version>
</header>
<line>
<id> 1 </id>
</line>
<line>
<id> 2 </id>
</line>
<subline>
<id> 1 </id>
</subline>
<subline>
<id> 2 </id>
</subline>
</root>
Target:
<root>
<header>
<version>1</version>
</header>
<line>
<id> 1 </id>
</line>
<subline>
<id> 1 </id>
</subline>
<line>
<id> 2 </id>
</line>
<subline>
<id> 2 </id>
</subline>
</root>
etc...
Thanks for your support
<line>and one<subline>? Would you rather alternate them? Or something else? – ABach Nov 11 '12 at 21:12<xsl:sort>. – Thomas W Nov 11 '12 at 22:09