xsl-list
[Top] [All Lists]

Re: Stripping or converting HTML tags

2004-10-19 09:03:20
Aaron Johnson wrote:

<xsl:template match="xhtml:table">
 <xsl:value-of select="."/>
</xsl:template>


You are stopping everything right here. You want to apply-templates so you can get to the TR's -- then, when you match the TR's you want to apply-templates so you can get to the TH & and TD's.

best,
-Rob