xml,xslt,transformation,pubmed
One issue you have is the template that matches Item <xsl:template match="Item"> <xsl:element name="{@Name}"> <xsl:value-of select="."/> </xsl:element> </xsl:template> By using xsl:value-of here, it will not carry on processing any child nodes, so you won't get any matching done on any child Item elements. You need to use xsl:apply-templates here, to...