我正在尝试为 xml 发布者创建一个 rtf 模板。在我的表中列出了一些不同的组。我想为每个组提供特殊的背景颜色。颜色信息将来自带有“GROUP_COLOR”标签的 xml。
通常,此代码在我的模板中完美运行:
<xsl:attribute xdofo:ctx="block" name="background-color">#FF420E</xsl:attribute>
当尝试从 xml 获取颜色值时,如下所示给出错误:
<xsl:attribute xdofo:ctx="block" name="background-color"><?GROUP_COLOR?></xsl:attribute>
我该如何克服这个问题?