[xsl] output CDATA in xml using xsl

Subject: [xsl] output CDATA in xml using xsl
From: Thomas Rasmussen <tbr77@xxxxxxxxxxxx>
Date: Sun, 21 Dec 2003 13:32:11 +0100
Hello
I am trying to make a xsl document that converts one xml document into another, but have run into some trouble.
I have this document:
<ads>
<ad>
<hello>world</hello>
<paragraph>Some <bold>html</bold> formatted text</paragraph>
<paragraph>Another line of <bold>html</bold></paragraph>
</ad>
</ads>


And I want this out:
<ads>
<ad>
  <hello>world</hello>
  <htmlcontent>
  <![CDATA[
      <p>Som Some <b>html</b> formatted text<p>
      <p>Another line of <b>html</b></p>
  ]]>
  </htmlcontent>
</ad>
</ads>

I have tried setting <xsl:output cdata-section-elements="htmlcontent"> but that did not help me?

Regards,
Thomas Rasmussen


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread