RE: [xsl] simple XPath expression

Subject: RE: [xsl] simple XPath expression
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 21 Mar 2002 13:03:37 +0200
Hi,

> An extra requirement then came up - I wanted to change this 
> line so that it
> only matched on text nodes that didn't have a <font> element 
> as an ancestor.
> The following line is my current attempt to do this:
> 
>   <xsl:template match="xhtml:body//text()[not(ancestor::font)]">

You forgot the namespace prefix from the font element, i.e. use

  <xsl:template match="xhtml:body//text()[not(ancestor::xhtml:font)]">

Santtu

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


Current Thread