XSL1.0
I need help finding the first previous node, skipping white space,
comments, etc.. I thought this might work, but I can't get it or
similar tries to work.
<xsl:variable name="previous" select="preceding::node()
[not(comment())]
[not(text())]
[not(processing-instruction())]
[1]"/>
Given that <X> is the context node then I expect the previous node is <M>.
<A>
<M>
<?skip me?>
<!--skip me-->
</M>
<X> this is context node </X>
</A>
Given that <X> is the context node then I expect the previous node is <B>.
<A>
<B>
<X> this is context node </X>
</B>
</A>
--
Karl Stubsjoen
MeetScoresOnline.com
(602) 845-0006
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--