我正在根据富文本编辑器的输出生成pdf文件,其中某些组件(如字体颜色,特定单词或段落的字体大小)类似于
<p>Hello Hi <strong>skansdjnsjc</strong>
<span style="color:#ce181e"><em>cddsklncjkdsv</em></span>
<span style="color:#ce181e">sdsadsad</span></p>
在我的xslt文件中,我做了一个模板匹配
<xsl:template match="span">
<xsl:variable name="color">
<xsl:choose>
<xsl:when test="@color">
<xsl:value-of select="@color"/>
</xsl:when>
<xsl:otherwise>
<xsl:text>black</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
</xsl:template>
但是所需的样式未在pdf文件中呈现。我有什么想念的吗?还是有解决方案?
感谢您的提前帮助!
答案 0 :(得分:1)
在XSLT 2.0中,您可以像这样从style属性中提取颜色
<xsl:variable name="extractColor" select="tokenize(tokenize(@style, ';')[normalize-space(substring-before(., ':')) = 'color'], ':')[2]" />
然后,设置您的color
变量(如果未提取颜色,则将其设置为black
)。...
<xsl:variable name="color" select="($extractColor, 'black')[1]" />
当然,如果扩展以提取其他值,则可以创建一个函数。
尝试使用此XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:my="my">
<xsl:output method="html" indent="yes" html-version="5"/>
<xsl:template match="span">
<span>
<xsl:variable name="color" select="(my:extract(@style, 'color'), 'black')[1]" />
<xsl:value-of select="$color" />
</span>
</xsl:template>
<xsl:function name="my:extract">
<xsl:param name="text" />
<xsl:param name="name" />
<xsl:sequence select="tokenize(tokenize($text, ';')[normalize-space(substring-before(., ':')) = $name], ':')[2]" />
</xsl:function>
</xsl:stylesheet>