github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-130.xsl (about) 1 <?xml version="1.0"?> 2 <xsl:stylesheet version="1.0" 3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 xmlns="http://www.w3.org/TR/REC-html40"> 5 6 <xsl:import href="./bug-130-imp1.imp"/> 7 <xsl:import href="./bug-130-imp2.imp"/> 8 <xsl:import href="./bug-130-imp3.imp"/> 9 <xsl:import href="./bug-130-imp4.imp"/> 10 11 <xsl:output method="html" indent="no"/> 12 13 <xsl:variable name="g.doc.root" select="document('../docs/bug-130.doc')"/> 14 15 <xsl:template match="/"> 16 <html> 17 <head></head> 18 <body><xsl:apply-templates select="/frame"/></body> 19 </html> 20 </xsl:template> 21 22 </xsl:stylesheet>