> For the complete documentation index, see [llms.txt](https://documentation.soulver.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.soulver.app/it/riferimento-sintassi/headings-and-comments.md).

# Intestazioni e Commenti

## Intestazioni

Usa il carattere # per indicare una riga di intestazione. Le righe di intestazione sono in grassetto e non visualizzano una risposta (anche se ci sono numeri nell'intestazione).

```
# Questa è un'intestazione
```

{% hint style="info" %}
È possibile personalizzare la dimensione delle intestazioni, così come il loro colore (e il colore del simbolo # stesso) dalle preferenze di stile di Soulver.

È anche disponibile un'opzione per rimuovere i simboli di intestazione quando si esporta in PDF o si stampa.
{% endhint %}

## Commenti

Se vuoi che Soulver ignori determinati numeri su una riga, usa un commento, come un'etichetta o un commento con doppia barra obliqua.

### etichette:

Usa un'etichetta all'inizio di una riga, usando due punti:

```
Costo di iPhone 16 da 128 GB: $999 | $999.00
```

{% hint style="info" %}
Le etichette vengono automaticamente formattate in **grassetto.**
{% endhint %}

### // commenti con doppia barra obliqua

Tutti i numeri dopo due barre oblique vengono ignorati:

```
// 1 + 2 | 
1 + 2    | 3
```

Puoi anche aggiungere commenti con barre oblique alla fine delle righe:

```
Ho speso $128 + $45 per i vestiti // il 10-02-2019 | $173.00
```

### (commenti tra parentesi)

I numeri con parole di commento aggiuntive all'interno delle parentesi vengono ignorati:

```
$999 (per iPhone 16) | $999.00
```

### "commenti inline"

Puoi "citare" numeri nel mezzo di un'espressione per farli ignorare:

```
Boing "747" costa $386.8M | $386.8M
```

#### Riepilogo degli Stili di Commento

| Tipo         | Sintassi      | Note                                                                                                                           |
| ------------ | ------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Etichetta    | **123:**      | A volte è necessario uno spazio dopo i : per distinguerlo da un orario (come 14:45)                                            |
| Doppia barra | // 123        | Comuni nei linguaggi di programmazione. Premi ⌘-/ per commentare automaticamente un'intera riga in questo stile.               |
| Parentesi    | (123 comment) | Assicurati di avere una parola di commento accompagnatoria all'interno delle parentesi, per evitare moltiplicazione implicita. |
| Inline       | "123"         |                                                                                                                                |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://documentation.soulver.app/it/riferimento-sintassi/headings-and-comments.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
