I am brand new to XSL and am trying to get the information from a source file that is in this format:
<mailList>
<subscriber familyname="Smith"
givenname="Jon"
email="[email protected]"/>
<subscriber givenname="Luke"
familyname="Sky"
email="sov.com"/>
I have tried to use value-of but it just creates an empty element:
<xsl:template match="subscriber">
<xsl:element name="entry">
<xsl:element name="firstname">
<xsl:value-of select="forename"></xsl:value-of>
</xsl:element>
Any help would be greatly appreciated!