RE: [xsl] New to XSL - invalid token error

Subject: RE: [xsl] New to XSL - invalid token error
From: "Sherzod Ruzmetov" <xslt@xxxxxxxxxxxx>
Date: Wed, 29 Jan 2003 00:37:21 -0500
    :I'm rather new to XSL and was plugging along famously until I 
    :hit  a brick
    :wall with the following template.
    :
    :    <xsl:template match = "link[@newwin]">
    :        <a href = {@href}>
    :            <xsl:value-of select="link"/>
    :        </a>
    :        <xsl:apply-templates/>
    :
    :    </xsl:template>
    :

You forgot quotes:

	 <a href="{@href}">
		<xsl:value-of select="." />
	</a>




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread