> For the complete documentation index, see [llms.txt](https://foe-helper.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://foe-helper.gitbook.io/docs/italian/guida/documentazione.md).

# Scrittura della documentazione

## Crea il file

Crea un nuovo file `README.md` vuoto in una cartella che prende il nome da un modulo dell'helper. Ad esempio, puoi guardare la directory `/de/erweiterung/kostenrechner`. C'è anche una cartella di immagini nascosta. Gli screenshot del calcolatore dei costi verranno inseriti lì.

{% hint style="info" %}
Un `README.md` non apparirà nell'URL, sarà trattato come un indice.\*. Se è necessario dividere un modulo in più pagine, utilizzare nomi univoci minuscoli senza caratteri speciali o spazi.
{% endhint %}

Questo file/percorso deve quindi essere aggiunto a `/SUMMARY.md` nella directory principale.

```markdown
* [Aiuto](italiano/guida/README.md)
  * [Github](italiano/guida/github.md)
  * [Markdown](italiano/guida/markdown.md)
  * [Scrittura della documentazione](italiano/guida/documentazione.md)
```

Gitbook esegue quindi il rendering della struttura corretta da questo e genera automaticamente i collegamenti.

## Struttura

Il sottotitolo della pagina stessa appare sempre in alto. Ecco il titolo di questa pagina

```markdown
---
descrizione: Struttura di un documento e del suo codice
---
```

Solo allora arriva il primo titolo:

```markdown
# Documentazione
```

Da qui in poi, puoi semplicemente scrivere.


---

# 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:

```
GET https://foe-helper.gitbook.io/docs/italian/guida/documentazione.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.
