Created
July 12, 2011 07:48
-
-
Save ophentis/1077572 to your computer and use it in GitHub Desktop.
[xslt] data to table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:for-each select="data/entry[position() mod 3 = 1]"> | |
<tr> | |
<xsl:for-each select=". | following-sibling::entry[position() < 3]"> | |
<td> | |
<xsl:value-of select="@id"/> | |
</td> | |
</xsl:for-each> | |
</tr> | |
</xsl:for-each> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment