find last element of document
I have a xml transforming into a html using xslt, this xml consists of different sections on html i am separating each section using <hr>, but i don't want last section of document have <hr>.
how do i check this condition.
i need a condistion somthing like this
<if current node is not last node of the document>
<hr>
</if>
|