Subject: Re: Applying XSL on HTML/MathML bis
From: Eric van der Vlist <vdv@xxxxxxxxxxxx>
Date: Fri, 29 Oct 1999 12:07:24 +0200
|
I can answer the theoretical point :)
> - And a theorical one : when I apply a stylesheet on a XML doc, every tag
> that is NOT implemented by the stylesheet is ignored
You need to implement an identity transformation :
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
in your stylesheet if you want to keep the other entities.
Hope this helps,
Eric
--
------------------------------------------------------------------------
Eric van der Vlist Dyomedea
http://www.dyomedea.com http://www.ducotede.com
------------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|