Re: Ignore childs

Subject: Re: Ignore childs
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 10 Mar 2000 12:15:14 GMT
    <xsl:value-of select="title"/>

value-of gives you the string value which is all the characters,
which is not what you want. so


    <xsl:apply-templates select="title" mode="title"/>

<xsl:template match="expansion" mode="title"/>

should work. The empty template for "expansion" in title mode says
you don't want expansions in titles.

David


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


Current Thread