[xsl] Process HTML with XSL

Subject: [xsl] Process HTML with XSL
From: Esteban Fernández <efernandez@xxxxxxxxxxxxxxxxx>
Date: Fri, 8 Jul 2005 17:25:54 -0400
Hi all,

I'm new on the list, and of course I'd read the Posting Guidelines, I search
in the archive, Google, and every any other resource i found but nothing
resolve my problem.

The problem, XML page:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="xsl/main.xsl" type="text/xsl"?>
<home title="Title Test">
<![CDATA[
    <table width="100%" border="0" cellspacing="3" cellpadding="3">
      <tr>
        <td width="50%"><img src="/images/logo.png" / alt=""></td>
        <td width="50%"><p>Text</p></td>
      </tr>
    </table>
]]>
</home>


XSL page (extract).

[...]
<xsl:value-of select='/home' disable-output-escaping="no" />


What I want its put this HTML content inside the XSL page, and of course
draw the tables and every else, but only write the text as is, but the
browser is not process the HTML, just write it :(.

The question: How can I make XSL procces this HTML code and show it like I
want?.

Thanks in advances.

-- Esteban Fernandez.

Current Thread