Re: [xsl] replace table by one code tag

Subject: Re: [xsl] replace table by one code tag
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 21 Jan 2005 11:07:21 GMT
Note you can't really manipulate tags in XSLT (tags are not the same as
elements), but you probably want something like:


<xsl:template match="table[@bgcolor='blue']">
  <code><xsl:value-of select="."/></code>
</xsl:template>


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
________________________________________________________________________

Current Thread