Warning, /utilities/kate/addons/symbolviewer/samples/testfile.xslt is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <!-- Comment one line -->
0003 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
0004     <xsl:variable name="var1">Variable 1</xsl:variable>
0005     <xsl:param name="param1" select="." />
0006     <xsl:template match="body">
0007         <html>
0008             <body>
0009                 <xsl:apply-templates />
0010             </body>
0011         </html>
0012     </xsl:template>
0013 <!--
0014 Comment multilines
0015 -->
0016     <xsl:template match="header1">
0017         <xsl:variable name="var2_in_header1">Variable 2 in template header1</xsl:variable>
0018         <h1>
0019             <xsl:apply-templates />
0020         </h1>
0021     </xsl:template>
0022 </xsl:stylesheet>