Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / example.xsl
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

example.xsl @upstream/4.0.0+git20210223.6654d48raw · 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>