XSL stylesheet 4<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> |
<xsl:template match="/"> |
<xsl:apply-templates select="//CCC"/> |
</xsl:template> |
<xsl:template match="CCC"> |
<H3 style="color:blue"> |
<xsl:value-of select="name()"/> |
<xsl:text> (id=</xsl:text> |
<xsl:value-of select="@id"/> |
<xsl:text> )</xsl:text> |
</H3> |
</xsl:template> |
<xsl:template match="CCC/CCC"> |
<H2 style="color:red"> |
<xsl:value-of select="name()"/> |
<xsl:text> (id=</xsl:text> |
<xsl:value-of select="@id"/> |
<xsl:text> )</xsl:text> |
</H2> |
</xsl:template> |
<xsl:template match="AAA/CCC/CCC"> |
<H2 style="color:green"> |
<xsl:value-of select="name()"/> |
<xsl:text> (id=</xsl:text> |
<xsl:value-of select="@id"/> |
<xsl:text> )</xsl:text> |
</H2> |
</xsl:template> |
</xsl:stylesheet> |