github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-127.xsl (about) 1 <xsl:stylesheet 2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 3 version="1.0" 4 > 5 6 <xsl:output method="html"/> 7 8 <xsl:variable name='var'>"'"</xsl:variable> 9 10 <xsl:template match="/"> 11 <html> 12 <body> 13 <input type="text" value="{$var}"/> 14 </body> 15 </html> 16 </xsl:template> 17 18 </xsl:stylesheet>