Re: [xsl] Problem with xslfo

Subject: Re: [xsl] Problem with xslfo
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 11 Oct 2006 15:46:25 +0100
Something like this
first have a template for notes that does nothing
<xsl:template match="note"/>
then when you apply temnplates to your input you will get
1.Some text here
2.Some text
Then before applyying templates you wnat to process all notes so

<xsl:template match="root">
<xsl:for-each select=".//note">
Note: <xsl:apply-templates/>
</xsl:for-each>
 <xsl:apply-templates/>
</xsl:template>

David

Current Thread