[Home] [By Thread] [By Date] [Recent Entries]
Cindy Mazza wrote:
That gives me the text, but without any styles applied. Ah, now I get the problem:
<xsl:variable name="div1notes">
<div id="{$div1id}.notes>
<!-- do whatever you do with "head" here -->
<xsl:apply-templates select="descendant::note" mode="endnote"/>
<div>
</xsl:variable>
...
<xsl:copy-of select="$div1notes"/>The other possibility is to use an extension function which converts the RTF to a node set. The details are processor dependent, look into the documentation of your processor. If you use MSXML, you'll have to resort to some embedded script, check the archives of this list. <xsl:variable name="div1notes">
...
</xsl:variable><xsl:apply-templates select="nn:node-set($div1notes)"/> J.Pietschmann XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



