[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Stripping or converting HTML tags


Subject: Re: [xsl] Stripping or converting HTML tags
From: Robert Koberg <rob@xxxxxxxxxx>
Date: Tue, 19 Oct 2004 09:03:20 -0700

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


Current Thread