Re: [xsl] Transforming augmented XHTML to XHTML using XSLT

Subject: Re: [xsl] Transforming augmented XHTML to XHTML using XSLT
From: Robert Koberg <rob@xxxxxxxxxx>
Date: Fri, 21 Mar 2008 17:31:07 -0400
>     <xsl:template match="/">
>       <html>
>         <xsl:apply-templates select="." mode="html"/>
>       </html>
>     </xsl:template>

You are trying to apply on the document node in the html mode. It is
looking to be matched by:

<xsl:template match="/" mode="html"/>

you probably want to simply apply templates so you can get to the HTML
root element.

best,
-Rob

Current Thread