<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
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--