Subject: Re: do I have better option other than mode
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 20 Nov 2000 11:26:47 GMT
|
Rather than
<xsl:if test="@id">..
You could just have
<xsl:apply-templates select="@id"/>
in any templates that might need this, then
<xsl:template match="@id">
<a name="{.}"/>
</xsl:template>
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|