我们需要使用 xslt 转换从 xml 创建一个 html。我们要求生成的 html 锚标记为
<a>
<xsl:attribute name="href">
<xsl:value-of select="Google-Link" />
</xsl:attribute>
</a>
输出 html 的 href 属性值用双引号括起来
<a href="http://google.com">google</a>
,但我们希望它用单引号括起来
<a href='http://google.com'>google</a>