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]

portability, correctness question




Im currently using XT to do transformations. in your opinion is it ok,
portable, correct, etc to do the following?


<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html" indent="no"/>
<xsl:template match="/">


<xsl:text disable-output-escaping="yes"><![CDATA[
	..a lot of complex html, javascript and style sheet stuff that I
dont want to worry about
]]></xsl:text>		


<xsl:value-of select="littlebitofxmlthatneedstobetransformed" />


<xsl:text disable-output-escaping="yes"><![CDATA[
	more complex html, javascript and style sheet stuff that I dont want
to worry about
]]></xsl:text>

</xsl:template>
</xsl:stylesheet>


thanks
Alec

 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]