HTMLにレンダリングする次のXSLがあります。
<xsl:for-each select="user">
<xsl:variable name="exampleurl">
<xsl:choose>
<xsl:when test="objecttype='2'">
Check this out:
<strong><a class="link" href="http://www.example.com/beinspired">Inspiration</a></strong>.
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:value-of select="$exampleurl" />
</xsl:for-each>
ただし、変数$ exampleurlを出力すると、「Check this out:Inspiration」というテキストのみが出力されます。印刷されます。しかし、「インスピレーション」という言葉は、私が望むようなクリック可能なURLではありません。
これを修正する方法は?