# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mavolin.gitbook.io/corgi/learning-corgi/comments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
