github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/REC/test-7.1.1-3.xsl (about)

     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  
     6  <doc:doc>Some ignored documentation the prefix should not show
     7           up on the doc element</doc:doc>
     8  <xsl:template match="/">
     9  <out xsl:exclude-result-prefixes="doc">SUCCESS</out>
    10  </xsl:template>
    11  
    12  </xsl:stylesheet>