<?xml version="1.0"?>

<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:tal="http://xml.zope.org/namespaces/tal"
  version="1.0">

  <xsl:output 
    method               = "xml"
    omit-xml-declaration = "yes"/>

  <xsl:strip-space elements="*"/>

  <xsl:template match="document">
    <xsl:apply-templates/><span tal:replace="here/who">junk</span>
  </xsl:template>

</xsl:stylesheet>
