> For the complete documentation index, see [llms.txt](https://roveroniandrea.gitbook.io/htpl-compiler/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://roveroniandrea.gitbook.io/htpl-compiler/syntax/comments.md).

# Comments

All elements that are not children of the `<HTPL>` tag will be ignored. If you want to add comment to your code, you can use the traditional HTML comment `<!--comment-->` or assign the class `HTPL-ignore` to the element. This makes the compiler to skip the element and all his children:

```markup
<!--This cite tag and all his children will be ignored-->
<cite class="HTPL-ignore">
    <b id="+">
        <p>Foo now has values: </p>
        <p id="foo"></p>
    </b>
</cite>
```
