This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XSL and Well-formed HTML


> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]