This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Ignore childs



    <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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]