1<xsl:stylesheet
2  version="1.0"
3  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4  xmlns:doc="http://example.org/doc"
5  exclude-result-prefixes="doc">
6
7<doc:doc>Some ignored documentation the prefix should not show
8         up on the doc element</doc:doc>
9<xsl:template match="/">
10<out>SUCCESS</out>
11</xsl:template>
12
13</xsl:stylesheet>
14