> 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/de/syntax-referenz/headings-and-comments.md).

# Überschriften & Kommentare

## Überschriften

Verwenden Sie das Zeichen #, um eine Überschriftenzeile anzugeben. Überschriftenzeilen werden fett formatiert und zeigen keine Antwort an (auch wenn die Überschrift Zahlen enthält).

```
# Dies ist eine Überschrift
```

{% hint style="info" %}
Sie können die Größe der Überschriften sowie deren Farbe (und die Farbe des #-Symbols selbst) in den Stilpräferenzen von Soulver anpassen.

Es gibt auch eine Option, die Überschriftenzeichen beim Export nach PDF oder beim Drucken zu entfernen.
{% endhint %}

## Kommentare

Wenn Sie möchten, dass Soulver bestimmte Zahlen in einer Zeile ignoriert, verwenden Sie einen Kommentar, wie ein Label oder einen Doppel-Slash-Kommentar.

### Labels:

Verwenden Sie ein Label am Anfang einer Zeile, gefolgt von einem Doppelpunkt:

```
Kosten für 128 GB iPhone 16: $999 | $999.00
```

{% hint style="info" %}
Labels werden automatisch in **Fettdruck** formatiert.
{% endhint %}

### // Doppel-Slash-Kommentare

Alle Zahlen nach zwei Schrägstrichen werden ignoriert:

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

Sie können auch Schrägstrich-Kommentare am Ende von Zeilen hinzufügen:

```
Ich habe $128 + $45 für Kleidung ausgegeben // am 10-02-2019 | $173.00
```

### (Klammerkommentare)

Zahlen mit zusätzlichen Kommentarwörtern in Klammern werden ignoriert:

```
$999 (für iPhone 16) | $999.00
```

### "Inline-Kommentare"

Sie können Zahlen mitten in einem Ausdruck "zitieren", damit sie ignoriert werden:

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

#### Zusammenfassung der Kommentarstile

| Typ          | Syntax          | Anmerkungen                                                                                                                        |
| ------------ | --------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Label        | **123:**        | Manchmal ist ein Leerzeichen nach dem : erforderlich, um es von einer Uhrzeit (wie 14:45) zu unterscheiden                         |
| Doppel-Slash | // 123          | Wird häufig in Programmiersprachen verwendet. Drücken Sie ⌘-/ , um automatisch eine gesamte Zeile in diesem Stil zu kommentieren.  |
| Klammer      | (123 Kommentar) | Stellen Sie sicher, dass Sie ein begleitendes Kommentarwort in den Klammern haben, um eine implizite Multiplikation zu verhindern. |
| 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/de/syntax-referenz/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.
