RTF 模板属性动态值

RTF Template Attribute Dynamic Value

我正在尝试为 xml 发布者创建一个 rtf 模板。在我的 table 中列出了一些不同的组。我想为每个组提供特殊的背景颜色。颜色信息将来自 xml 和 'GROUP_COLOR' 标签。

通常这段代码在我的模板中完美运行:

<xsl:attribute xdofo:ctx="block" name="background-color">#FF420E</xsl:attribute>

当尝试从 xml 获取颜色值时,如下所示给出错误:

<xsl:attribute xdofo:ctx="block" name="background-color"><?GROUP_COLOR?></xsl:attribute>

我该如何克服这个问题?

我找到如下解决方案:

<xsl:attribute xdofo:ctx="block" name="background-color">
    <xsl:value-of select="GROUP_COLOR"/>
</xsl:attribute>