Below is the actual xml:
<?xml version="1.0" encoding="utf-8"?>
<Procedures>
<Title>ABC</Title>
<P>CS</P>
<div><P>sse</P></div>
</Procedures>
And i want the output as below:
<?xml version="1.0" encoding="utf-8"?>
<Procedures>
<Title>ABC</Title>
<body>
<P>CS</P>
<div><P>sse</P></div>
</body>
</Procedures>
Is this possible to add XML element in between using xslt? Please give me sample!