RE: New to XSL - invalid token error2003-01-28 22:37:21 :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[(_at_)newwin]">
: <a href = {(_at_)href}>
: <xsl:value-of select="link"/>
: </a>
: <xsl:apply-templates/>
:
: </xsl:template>
:
You forgot quotes:
<a href="{(_at_)href}">
<xsl:value-of select="." />
</a>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
|
||||||||||||||||