03/01/01 15:58
>>677
「call-template要素」
「name属性つき template要素」
を使うとか。以下未検証。報告しる。
<xsl:template match="link">
<xsl:call-template name="link" />
</xsl:template>
<xsl:template match="hogehoge_link">
<moge>
<xsl:call-template name="link" />
</moge>
</xsl:template>
<xsl:template name="link">
<a>
<xsl:choose>
<xsl:when test="@uri[. != '']">
<xsl:attribute name="href"><xsl:value-of select="@uri"/></xsl:attribute>
: (省略)
</xsl:when>
<xsl:apply-templates/>
</a>
</xsl:template>