在XSLT期间保留某些html标记

时间:2010-05-26 13:49:31

标签: html xml xslt

我已经在stackflow上查找了解决方案,但它们似乎都不适合我。这是我的问题。可以说我有以下文字:

来源:

<greatgrandparent>
<grandparent>
    <parent>
         <sibling>
              Hey, im the sibling .
          </sibling>
        <description>
        $300$ <br/> $250 <br/> $200! <br/> <p> Yes, that is right! <br/> You can own a ps3 for only $200 </p>
        </description>
    </parent>
    <parent>
         ... (SAME FORMAT)
    </parent>
       ... (Several more parents)
</grandparent>
</greatgrandparent>

输出:

 <newprice>
        $300$ <br/> $250 <br/> $200! <br/> Yes, that is right! <br/> You can own a ps3 for only $200  
    </newprice>

我似乎无法找到办法。

当前XSL:

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

        <xsl:template match="greatgrandparents">
            <xsl:apply-templates />
        </xsl:template>

    <xsl:template match = "grandparent">

    <xsl:for-each select = "parent" >
          <newprice>
             <xsl:apply-templates>
           </newprice>
    </xsl:for-each>
    </xsl:template> 

<xsl:template match="description"> 
    <xsl:element name="newprice"> 
       <xsl:apply-templates/> 
    </xsl:element> 
</xsl:template> 

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

4 个答案:

答案 0 :(得分:5)

使用模板定义特定元素的行为

<!-- after standard identity template -->

<xsl:template match="description">
    <xsl:element name="newprice">
       <xsl:apply-templates/>
    </xsl:element>
</xsl:template>

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

第一个模板说要与description交换newprice。第二个是忽略p元素。

如果您不熟悉身份模板,可以使用take a look here作为示例。

编辑:给定新示例,我们可以看到您只想提取description元素及其内容。请注意,模板操作以match="/"模板开头。我们可以在样式表开始的地方使用此控件,从而跳过我们想要过滤的大部分痞子。

<xsl:template match="/">更改为更像:

    <xsl:template match="/">
        <xsl:apply-templates select="//description"/>   
        <!-- use a more specific XPath if you can -->
    </xsl:template>

所以我们的解决方案看起来像这样:

<xsl:stylesheet 
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
    exclude-result-prefixes="xs">

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

<!-- this is the identity template -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="description">
    <xsl:element name="newprice">
       <xsl:apply-templates/>
    </xsl:element>
</xsl:template>

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

</xsl:stylesheet>

答案 1 :(得分:0)

内容不应该在CDATA元素内吗?然后可能在xsl:value-of ..

上禁用输出编码

答案 2 :(得分:0)

您应该查看xsl:copy-of

你最终会得到类似的东西:

<xsl:template match="description">
    <xsl:copy-of select="."/>
</xsl:template>

答案 3 :(得分:0)

可能最短的解决方案是

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

 <xsl:template match="description">
   <newprice>
     <xsl:copy-of select="node()"/>
   </newprice>
 </xsl:template>

 <xsl:template match="text()[not(ancestor::description)]"/>
</xsl:stylesheet>

在提供的XML文档上应用此转换时,会生成所需结果:

<newprice>
        $300$ <br /> $250 <br /> $200! <br /> <p> Yes, that is right! <br /> You can own a ps3 for only $200 </p>
        </newprice>

请注意

  1. 使用<xsl:copy-of select="node()"/> 复制所有以description为根的子树,没有根本身。

  2. 我们如何覆盖(使用特定的模板)XSLT内置模板,从而防止任何非后代的文本节点{{ 1}}元素,要输出。