Codebase list ohcount / 85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main test / src_dir / example.xsl
85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main

Tree @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main (Download .tar.gz)

example.xsl @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/mainraw · history · blame

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <!--sample template-->
  <xsl:template match="sample-tag">				       
    <html>
      <head>
	<title>sample webpage </title>
      </head>
      <style><![CDATA[sample style]]></style>
      <body>
	<!-- comment -->
	<xsl:comment> comment in HTML</xsl:comment>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>