Re: [xsl] xhtml xslt?

Subject: Re: [xsl] xhtml xslt?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 26 Aug 2004 10:05:34 +0100
>I started to create an XSLT to accomplish this:

you just want to copy the html you don't need a template for each
element, the whole point of namespaces id to make this easy, you can
grab them all at once.

<xsl:template match="h:*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl;apply-templates/>
</xsl:copy>
</xsl:template>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

Current Thread