On Sat, Jun 21, 2003 at 11:19:41AM +0100, Matt Sergeant wrote:
> 
> You need to add in an identity transformation into your XSLT to pass 
> un-specified tags through untouched:
> 
> <xsl:template match="*|@*">
>   <xsl:copy>
>    <xsl:apply-templates select="@*"/>
>    <xsl:apply-templates/>
>   </xsl:copy>
> </xsl:template>
> 
> (I think that works OK with namespaced elements, but I'm sure Robin 
> will pipe up if it doesn't).
> 
> Matt.
>
Thanks a lot!  It worked beautifully.

Streph

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to