<document>
<title>
<subtitle>
<document>
<group>
<titile>
<subtitle>
you just need a standard identity template, plus one for document that
looks like
<xsl:template match="document">
<xsl:copy>
<group>
<xsl:apply-templates select="title|subtitle"/>
</group>
<xsl:apply-templates select="*[not(self::title or self::subtitle)]"/>
</xsl:copy>
</xsl:template>
if you are using xslt2 you can write that second one as
<xsl:apply-templates select="* except (title|subtitle)"/>
which is perhaps a bit clearer (but means the same thing)
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
--~------------------------------------------------------------------
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>
--~--