Template Engine language reference > Comments

Comments
Comments in a template are not included in the output. You can use two types of comments:
Single line comments
Single line comments start with ## and ends at the end of the line.
## A comment.
Hello World! ## Another comment.
Hello World!
Block comments
Block comments can span over multiple lines. A block comment starts with #* and ends with *#.
<head>
  <title>A Title</title>
</head>
<body>
  <p>A paragraph</p>
  #*
  Paragraph below is not used.
  <p>A paragraph</p>
  *#
</body>
<head>
  <title>A Title</title>
</head>
<body>
  <p>A paragraph</p>
  
</body>
OpenText StreamServe 5.6 Updated: 2013-03-01