Created
September 18, 2015 03:05
-
-
Save erinxocon/ae8f3d4ddb82661fcea9 to your computer and use it in GitHub Desktop.
Distinct XSLT 1.0
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:key name="product" match="/xpath/xpath/text()" use="." /> | |
<xsl:template match="/"> | |
<xsl:for-each select="/xpath/xpath/text()[generate-id()= generate-id(key('product',.)[1])]"> | |
<li> | |
<xsl:value-of select="."/> | |
</li> | |
</xsl:for-each> | |
</xsl:template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment