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

Subject: Re: [xsl] New to XSL - invalid token error
From: S Woodside <sbwoodside@xxxxxxxxx>
Date: Wed, 29 Jan 2003 01:02:22 -0500
Try this:

<a>
  <xsl:attribute name="href" select="@href"/>
  <xsl:value-of select="link"/>
</a>

You're using syntactic sugar there, if you hit a problem with that kind of code-optimization it is often helpful to fall back on the fully expanded form.

simon

On Tuesday, January 28, 2003, at 10:53 PM, Anode wrote:

    <xsl:template match = "link[@newwin]">
        <a href = {@href}>
            <xsl:value-of select="link"/>
        </a>
        <xsl:apply-templates/>

</xsl:template>

---
www.simonwoodside.com


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



Current Thread