Skip to content

Instantly share code, notes, and snippets.

@cergey-obr
Created November 6, 2014 09:45
Show Gist options
  • Save cergey-obr/f938c5eded4a69e503f4 to your computer and use it in GitHub Desktop.
Save cergey-obr/f938c5eded4a69e503f4 to your computer and use it in GitHub Desktop.
Разбиение выборки на несколько частей
<xsl:for-each select="items/item[position() mod 5 = 1]">
<div class="line">
<xsl:for-each select=".|following-sibling::item[position() &lt; 5]">
<p><xsl:value-of select="@name" /></p>
</xsl:for-each>
</div>
</xsl:for-each>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment