This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: simple XPath expression


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]