Determining whether a node is contained within another node in XSLT
Is it possible to tell whether a node is contained within (or equal to) another node in XSLT? For example, consider this code snippet: <xsl:variable name="itemSection" select=".."/> <xsl:for-each select="key('enemyItems', @key)"> <xsl:variable name="enemyList" select="./attributes/@value"/> <xsl:variable name="enemyListSection"...