xsl-list
[Top] [All Lists]

RE: Transfer a subelement to top

2003-12-13 12:49:11
-----Original Message-----
From: Marc Tricou

<p>
    some text
    <table>
     ...
    </table>
    some text
</p>

How can i cut the embedding <p>-Tag into three parts, before and after the
table tag, so that i get this:


<xsl:template match="p[descendant::table]">

  <xsl:apply-templates />

</xsl:template>

<xsl:template match="text()">

  <p><xsl:value-of select="." /></p>

</xsl:template>

<xsl:template match="table">

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

</xsl:template>


Cheers,

Andreas


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>