我在获取xsl转换的正确结果时遇到问题。当我从Indesign导出我的xml文档而没有任何转换时,会生成以下代码:
<text>aerher<b>hea</b>rh er<i>haeh</i> rehe eageag</text>
它应该是这样的:
<text value="aerher[b]hea[/b]rh er[i]haeh[/i] rehe eageag" />
另请注意,<b>
如何转变为[b]
。现在我最大的问题是,我甚至没有选择所有的文字。通过以下转换,我的结果如下所示:
<xsl:template match="text">
<text value="{text()}"/>
</xsl:template>
<text value="aerher"/>
如何获取包含我的标签的完整文字?我会自己了解如何将<b>
转换为[b]
。我只是无法弄清楚,为什么它没有选择我的所有文字?
答案 0 :(得分:3)
<b>
不是<text>
元素包含的文本节点的一部分 - 它是标记。如果要将标记转换为文本(即伪标记),请尝试以下操作:
<xsl:template match="text">
<xsl:copy>
<xsl:attribute name="value">
<xsl:apply-templates/>
</xsl:attribute>
</xsl:copy>
</xsl:template>
<xsl:template match="b">
<xsl:text>[b]</xsl:text>
<xsl:apply-templates/>
<xsl:text>[/b]</xsl:text>
</xsl:template>
<xsl:template match="i">
<xsl:text>[i]</xsl:text>
<xsl:apply-templates/>
<xsl:text>[/i]</xsl:text>
</xsl:template>