如何将所有元素的内容与XSLT匹配?

时间:2015-01-14 07:52:54

标签: xml xslt

我有一个XML文件,其中包含一些转义的XHTML,如下所示:

<AuthorBio>
 <p>Paragraph with<br/>forced line break.</p>
</AuthorBio>

我尝试使用XSLT将其转换为以下内容:

<ParagraphStyleRange>
 <CharacterStyleRange>
  <Content>
   Paragraph with&#x2028;forced line break.
  </Content>
 </CharacterStyleRange>
 <Br/>
</ParagraphStyleRange>

这是我的XSLT的简化版本:

<xsl:template match="AuthorBio"> 
 <xsl:for-each select="p">
  <ParagraphStyleRange>
   <xsl:apply-templates select="./node()"/>
   <Br/>
  </ParagraphStyleRange>
 </xsl:for-each>
</xsl:template>

<xsl:template match="AuthorBio/p/text()">
 <CharacterStyleRange>
   <Content><xsl:value-of select="."/></Content>
  </CharacterStyleRange> 
</xsl:template>

<xsl:template match="br">
 &#x2028;
</xsl:template>

不幸的是,这给了我以下结果:

<ParagraphStyleRange>
 <CharacterStyleRange>
  <Content>
   Paragraph with
  </Content>
 </CharacterStyleRange>
 &#x2028;
 <CharacterStyleRange>
  <Content>
   forced line break.
  </Content>
 </CharacterStyleRange>
 <Br/>
</ParagraphStyleRange>

我意识到这是因为我的模板与p/text()匹配,因此会在<br/>处中断。但是 - 除非我完全以错误的方式接近这个 - 我无法想出一种方法来选择元素的全部内容,包括所有子节点。我想,除了删除包装元素之外,还有copy-of之类的东西。这可能吗?有没有办法匹配节点的整个内容,而不是节点本身?或者有更好的方法来解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

看起来您只想为每个段落输出一次CharacterStyleRangeContent元素。如果是,请将当前与AuthorBio/p/text()匹配的模板更改为仅与p匹配,然后在其中完全输出ParagraphStyleRangeCharacterStyleRangeContent

试试这个XSLT

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes" />

    <xsl:template match="AuthorBio"> 
        <xsl:apply-templates select="p" />
    </xsl:template>

    <xsl:template match="p">
        <ParagraphStyleRange>
            <CharacterStyleRange>
                <Content>
                    <xsl:apply-templates />
                </Content>
            </CharacterStyleRange> 
            <Br/>
        </ParagraphStyleRange>
    </xsl:template>

    <xsl:template match="br">
        <xsl:text>&#x2028;</xsl:text>
    </xsl:template>
</xsl:stylesheet>