# Comments

Corgi distinguishes between two types of comments:

**HTML comments** are included in your HTML while **corgi comments** are not.

{% tabs %}
{% tab title="Corgi" %}

```pug
p Hello
//- I'm included
p World!
// However, I am not.
//
  As is
  this block
```

{% endtab %}

{% tab title="HTML" %}

```markup
<p>Hello</p>
<!--I'm included-->
<p>World!</p>




```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Unlike in Go, comments must be the only item in their line. The below isn't allowed.

```pug
p // this is a p
  > ^ is not allowed
```

{% endhint %}
