Subject: RE: XSL and Well-formed HTML
From: "Vlattas, Christina" <CVlattas@xxxxxxx>
Date: Wed, 3 May 2000 09:18:14 -0400
|
> I have well-formed HTML embedded within my XML. I obviously want the HTML
> to appear as is in the browser.
Use the xsl:copy-of instruction.
> <DetectionPop>
> <UL>
> <!-- and more XHTML -->
> </UL>
> </DetectionPop>
<xsl:template match="DetectionPop">
<xsl:copy-of select="*"/>
</xsl:template>
I have to get this to work with IE 5.
I'm getting the message - 'Keyword xsl:copy-of may not be used here.'
as an error back from the browser. Is there anything else that I can do?
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|