xsl-list
[Top] [All Lists]

Re: output CDATA in xml using xsl

2003-12-21 05:52:39
Thomas Rasmussen wrote:
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>

*Why* do you want that output? In general, it's better to keep wellformed XHTML content as XML instead of plain text (escaped markup).

> ...

--
<green/>bytes GmbH -- http://www.greenbytes.de -- tel:+492512807760

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



<Prev in Thread] Current Thread [Next in Thread>