Subject: How to tranform the xml
From: "Sarboday Misra" <smisra@xxxxxxxxx>
Date: Wed, 08 Nov 2000 14:46:44 -0800
|
Hi all,
I am following this mail list and have gained a lot. I am able to parse and get
the queries done by xslt and java using clark-xt. But have no idea how to wrap
a node by another.
I have a xml file as :
<?xml version="1.0" encoding="utf-8"?>
<node1 role="MAIN">
<node2 mediatype="text" >
<text>
<p> xyz</p>
<p> ab</p>
</text>
</node2>
</node1>
I want it to be transformed to :
<?xml version="1.0" encoding="utf-8"?>
<node1 role="MAIN">
<node2 mediatype="text" >
<text><![CDATA[ <p> xyz</p>
<p> ab.</p>]]>
</text>
</node2>
</node1>
what will be the rule ??
Thanks in advance,
Sarboday
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|