Re: Determining if the first child is a para element

Subject: Re: Determining if the first child is a para element
From: Oliver Becker <obecker@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 9 Nov 2000 10:23:18 +0100 (MET)
Hi Ken,

> I need to know if the first child of a node is an
> element (para, in this case).  The test needs to be done in the parent's
> <template> element, prior to an <apply-templates/>.  Is there a
> straightforward <if> test I can use for this case?  Thanks!

test="node()[position()=1 and self::para]"
resp.
test="node()[1][self::para]"

or for any element:

test="node()[position()=1 and self::*]"

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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


Current Thread