github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-29-.xsl (about) 1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <xsl:stylesheet version="1.0" 4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 5 xmlns:fo="http://www.w3.org/1999/XSL/Format"> 6 7 <xsl:template match="include"> 8 Including: <xsl:value-of select="@href"/> 9 <xsl:apply-templates select="document(@href)"/> 10 </xsl:template> 11 12 <xsl:template match="person"> 13 Person: <xsl:apply-templates/> 14 </xsl:template> 15 16 </xsl:stylesheet>