xsl-list
[Top] [All Lists]

Re: [xsl] Output in XML / HTML, double tags and CDATA in script.

2009-02-17 13:00:02
On Tue, Feb 17, 2009 at 11:20 AM, Соловьев Андрей
<solovev(_at_)teratelecom(_dot_)ru> wrote:
Is there any way to solve this problem?  I need "<br/>" style tags in my
result html and working script.

The xsl code below should work for you.

<?xml version="1.0"?>
<xsl:stylesheet
version="1.0"
xmlns="http://www.w3.org/1999/xhtml";
xmlns:php="http://php.net/xsl";
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>


<xsl:output method="xml" encoding="utf-8"
 doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";
 doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" indent="yes" />

<xsl:template match="/">
 <html>
 <body>
        <xsl:text disable-output-escaping="yes">
  &lt;script language="Javascript"&gt;
        //&lt;![CDATA[
    if(1 == 1 &amp; 2 == 2)
     alert(1);
        //]]&gt;
  &lt;/script&gt;
        </xsl:text>
  <br/>
  <img src="test.jpg"/>
 </body>
 </html>
</xsl:template>
</xsl:stylesheet>

-- 
Andrew Ferk

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--