Subject: RE: template match
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Tue, 30 Dec 2003 00:26:32 +0100
|
> -----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
|