still struggling with FOSI mindset
I'm still trying to get FOSI with my XSLT orientation.
I have the following XML
<procedure>
<step>
<challenge>this is a challenge</challenge>
<para>First para in a step but with a challenge preceeding sibling</para>
</step>
<step>
<para>This is a para with no sibling, truly the first child of step</para>
</step>
</procedure>
So how can I apply different formatting to the second para in step 2, than the para in step 1? In both cases they are occurence= first so that test doesn't work. In XLST I would check to see if there was a preceeding-sibling, what is the best way to detect this in FOSI?
..dan

