You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Guillaume <le...@club-internet.fr> on 2000/06/20 15:14:29 UTC

Re: XML Containing HTML

Hello,
in your xml:
<?xml version="1.0" encoding="Iso-8859-1"?>
<?xml-stylesheet href="xsl.xsl" type="text/xsl" ?>
<?cocoon-process type="xslt"?>

<html>
<p>embeded html<br />
</p>
</html>

in your xsl stylesheet:
<?xml version="1.0" encoding="Iso-8859-1" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="html">
<xsl:copy-of select="."/>
	</xsl:template>
</xsl:stylesheet>
-- 
NT Somewhere, havoc everywhere