以下は私のxmlコードです:
<abbr>
<title>world health organization</title>who</abbr>
was founded in 1948.
上記のコードでは、次のように xslt 出力が必要です。
<abbr title="world health organisation">who<abbr>
私は次の XSLT コードを書きました:
<xsl:template match ="abbr">
<abbr title="<xsl:value-of select ="title"/>">
<xsl:value-of select ="."/></abbr>
</xsl:template>
そして私は得た:
<abbr title="world health organization">
world health organizationwho</abbr>
どこで私は間違えましたか?
の出力
<xsl:value-of select"."/>
は
world health organisationwho
(世界保健機関 + 誰)
今、私は最初の部分を望んでいません。どうすればこれを達成できますか?