RE: template match2003-12-29 16:26:32-----Original Message----- From: G. Ken Holman <snip />
As a supplement... in short :
<xsl:template match="t1">
<fo:root>
<xsl:template match="t2">
is obviously not allowed, use the following
<xsl:template match="t1">
<fo:root>
<xsl:apply-templates select="t2" />
</fo:root>
</xsl:template>
<xsl:template match="t2">
...
</xsl:template>
Hope this helps!
Cheers,
Andreas
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
|
||||||||||||||||