left up right
Removing Namespaces and Their Attributes

Many editors etc proliferate your document with unrequired attributes and namespaces

<mydoc>
<ele xmlns:xyz="..." xyz:theirattr="abc">abc</ele>
</mydoc>

<xsl:stylesheet 
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" xmlns:xyz="..." >

... Standard copy ...
<xsl:template match="@xyz:*" />
</xsl:stylesheet?