如何在变量减速内添加HTML标签? 请考虑以下XSLT脚本(XSL-FO文件): 来源1。
<xsl:variable name="map"> <entry key="key-1">sample <b>Text</b></entry> <entry key="key-2">value2</entry><entry key="key-3">value3</entry></xsl:variable>
调用代码段:
<xsl:template match="/"> <output> <xsl:value-of select="$map/entry[@key='key-1']"/> </output></xsl:template>
上面我想在XSLFO文件的XSL变量块中有一个html标记(b)(请参阅代码片段1),但是当我尝试从代码片段2访问xsl变量时,我得到的值没有粗体格式。
当前输出为:示例文本
预期输出为:示例文字
请在此建议。