You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Andy Bosch <An...@csi.com> on 2000/09/25 18:19:47 UTC

xsl: disable-output-escaping

Hi,

I found a really good thing in the xalan functionality:
disable-output-escaping

I need something like this, because I have values from
an xml-element, which can or cannot contain valid
html-source. I want the xsl-parser to ignore validity and
display the text _just it is_.

Example
<root>
<name>html-text</name>
<content><!CDATA[[ This is <b>bold</B> text ]]> </content>
</root>

I would like cocoon to display the bold tags without
converting them with &lt; and-so-on.

In the cocoon-faq I read, that cocoon does not
support disable-output-escaping. How can I solve
such a problem?

Thanks,
Andy