[NEW] Parse *.apsx, *.ascx files. Resulted in new polyglots cs_aspx, vb_aspx.
[ohcount] / test / src_dir / example.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4   <!--sample template-->
5   <xsl:template match="sample-tag">                                    
6     <html>
7       <head>
8         <title>sample webpage </title>
9       </head>
10       <style><![CDATA[sample style]]></style>
11       <body>
12         <!-- comment -->
13         <xsl:comment> comment in HTML</xsl:comment>
14       </body>
15     </html>
16   </xsl:template>
17 </xsl:stylesheet>