1<xsl:stylesheet
2    version="1.0"
3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4    xmlns:foo1="urn:foo1"
5    xmlns:foo2="urn:foo2"
6>
7    <xsl:strip-space elements="*"/>
8    <xsl:template match="doc">
9        <xsl:apply-templates select="*/*"/>
10    </xsl:template>
11</xsl:stylesheet>
12