I have things like this in my XML:
<fo:inline>
<fo:inline>Some Company</fo:inline>
</fo:inline> 
<fo:block/>
My identity transform is losing the  .
I've tried both:
<xsl:apply-templates select="@* | *"/>
<xsl:apply-templates select="@* | node()"/>
With a match and copy like this (again having tried both node() and *):
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
Where am I going wrong?
Karl..
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--