github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-33-.xsl (about) 1 <?xml version="1.0" ?> 2 3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 4 version="1.0"> 5 6 <xsl:output method="html"/> 7 8 <xsl:template match="/"> 9 <html> 10 <head> 11 <title><xsl:value-of select="exam/@name"/></title> 12 <script> 13 <xsl:text disable-output-escaping="yes"><</xsl:text> 14 funtion test() { 15 var a; 16 var b; 17 18 if (a < b) { alert('Hello'); } 19 } 20 21 <xsl:text disable-output-escaping="yes"><</xsl:text> 22 </script> 23 </head> 24 <body bgcolor="white"> 25 </body> 26 </html> 27 </xsl:template> 28 29 </xsl:stylesheet>