github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-73.xsl (about)

     1  <?xml version="1.0" encoding="iso-8859-1"?>
     2  <xsl:stylesheet version="1.0"
     3    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     4  
     5    <xsl:output method="text"/>
     6  
     7    <xsl:template match="p/text()">
     8      <xsl:value-of
     9        select="concat('text in ', name(..), ' = &#x22;')"/>
    10      <xsl:value-of select="normalize-space(.)"/>
    11      <xsl:text>&#x22;&#xa;</xsl:text>
    12    </xsl:template>
    13  
    14    <xsl:template match="text()"/>
    15  
    16  </xsl:stylesheet>
    17