1 <?xml version="1.0"?> 
   2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
   3                 xmlns:bar="http://apache.org/bar">
   4   
   5   <xsl:template match="bar">
   6     <out>
   7       <xsl:value-of select="."/>
   8     </out>
   9   </xsl:template>
  10   
  11   <xsl:template match="text()">
  12   </xsl:template>  
  13  
  14 </xsl:stylesheet>