XSL stylesheet 3<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> |
<xsl:import href="id2.xsl"/> |
<xsl:template match="/"> |
<xsl:apply-templates/ > |
</xsl:template> |
<xsl:template match="/*/*"> |
<DIV style="color:blue"> |
<xsl:value-of select="name()"/> |
<xsl:text> (according to this stylesheet)</xsl:text> |
</DIV> |
</xsl:template> |
</xsl:stylesheet> |