xsl-list
[Top] [All Lists]

Re: [xsl] Identify transform with disabled output escaping

2006-11-15 16:30:06

However I did not describe the problem properly. I would not like to DOE
on text, but on the elements. So for this:

No, you don't have any elements, just text, that's the problem that you
are trying to hide by using d-o-e. You just have a single text node with
a string that contains XML markup, rather than a tree of element nodes.

<a class=l href="http://www.lixto.com/";><b>Lixto</b> Software GmbH
Home</a>

Your input can not be of that form it must be

&lt;a class=l href="http://www.lixto.com/";>&lt;b>Lixto&lt;/b> Software GmbH
Home&lt;/a>

or equivalently

<![CDATA[<a class=l href="http://www.lixto.com/";><b>Lixto</b> Software GmbH 
Home</a>]]>

So by default that is the form you ar seeing in the result.

David



--~------------------------------------------------------------------
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>
--~--