我有一个非常愚蠢的问题。如何确保我的 XML 混合内容节点不会混淆?比如说,我有一个类似的 XML 结构。
<root>
<book>
<title>Stuff</title>
<description> This book is <i>great</i> if you need to know about stuff.
I suggest <link ref="Things">this one</link> if you need to know
about things. </description>
</book>
[other books]
</root>
我需要最终的内容看起来像这样
<h1>List of books</h1>
<h2><a name="Stuff"/>Stuff</h2>
<p> This book is <i>great</i> if you need to know about stuff.
I suggest <a href="#Things">this one</a> if you need to know
about things. </p>
但我无法提取文本节点的部分,我总是抓住整个东西。我正在使用后代轴。任何线索我做错了什么?
这是我的xslt:
<xsl:template match="description/*">
<xsl:for-each select="following-sibling::*">
<xsl:choose>
<xsl:when test="name(.)='link'">
<a href="{@ref}"><xsl:value-of select="."/></a>
</xsl:when>
<xsl:when test="name(.)='em'">
<em><xsl:value-of select="."/></em>
</xsl:when>
<xsl:otherwise><p><xsl:value-of select="."/></p></xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
请注意,随附的 XML 和生成的 html 只是示例,为了清楚起见,我必须处理一个更大的结构,我没有将其包含在其中。