I have an XML which has the following content:
<ruletypes>
<ruletype>Local</ruletype>
<ruletype>Global</ruletype>
...
</ruletypes>
I'm wanting a list of the ruletypes, I tried the following:
<xsl:for-each select="//ruletypes/ruletype">
<li><xsl:value-of select="ruletype"/></li>
</xsl:for-each>
but it's not working