[xsl] how to exclude namespaces from copy-of

Subject: [xsl] how to exclude namespaces from copy-of
From: cert21 <cert21@xxxxxxx>
Date: Thu, 05 Nov 2009 10:13:05 -0500
Hello!

I am trying to parse the atom feed using the xsl template.

The item in the feed contains this element: (example)
<div xmlns="http://www.w3.org/1999/xhtml"; xmlns:dc="http://purl.org/dc/elements/1.1/"; xmlns:thr="http://purl.org/syndication/thread/1.0";>
<p>
October and November are busy months for Amazon Web Services!</p>
</div>


I want to copy the div with all its child elements, so I use copy-of
The problem is that I don't want the xmlns="http://www.w3.org/1999/xhtml";
or xmlns:dc or any other extra data in the div attribute

I just want the result to be
<div>
<p>
October and November are busy months for Amazon Web Services!</p>
</div>

How can I do this?

Thank you.

Current Thread