github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-153.xsl (about) 1 <?xml version="1.0"?> 2 3 <xsl:transform 4 version="1.0" 5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 6 7 <xsl:template match="cp"> 8 <xsl:apply-templates select="c"/> 9 </xsl:template> 10 11 <xsl:template match="c"> 12 <p> 13 <xsl:value-of select="document('../docs/bug-153.doc')/ch/v[@name=current()/v]"/> 14 </p> 15 </xsl:template> 16 17 <xsl:key name="k" match="u/p" use="un"/> 18 19 </xsl:transform>