I
Infiniti
Lets say I have an xml file as such
<page>
<chapter>
<paragraph/>
<paragraph/>
<paragraph/>
<paragraph/>
<paragraph/>
</chapter>
</page>
And in my XSL file I want to do something every x occurances of the
paragraph element to end up with something like this. How can I match this ?
<page>
<chapter>
<paragraph/>
<paragraph/>
<paragraph/>
<paragraph/>
<paragraph/>
</chapter>
</page>
And in my XSL file I want to do something every x occurances of the
paragraph element to end up with something like this. How can I match this ?