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: Applying templates only to certain part of the tree


Nuri Besen writes:
 > <xsl:template match="/">
 >   	<xsl:apply-templates select="main"/>
 >   	<xsl:apply-templates select="main//TestSec"/>
 > </xsl:template>
 > 
 > What is the correct method to exclude a part of the tree?

let it find TestSec, but make them do nothing, with

<xsl:apply-templates match="TestSec"/>

well, thats one answer, anyway.	

Sebastian Rahtz


 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]