# Markdown

Die gesamte Dokumentation ist in Markdown-Code geschrieben. Hier sind einige Beispiele:

### Überschriften

| Markdown            | HTML                     | Gerendert              |
| ------------------- | ------------------------ | ---------------------- |
| # Überschrift 1     | \<h1>Überschrift 1\</h1> | <h2>Überschrift 1</h2> |
| ## Überschrift 2    | \<h2>Überschrift 2\</h2> | <h3>Überschrift 2</h3> |
| ### Überschrift 3   | \<h3>Überschrift 3\</h3> | <h4>Überschrift 3</h4> |
| #### Überschrift 4  | \<h4>Überschrift 4\</h4> | **Überschrift 4**      |
| ##### Überschrift 5 | \<h5>Überschrift 5\</h5> | **Überschrift 5**      |

***

### Images

Es können auch Screenshots eingereicht werden. Aus Gründen der Einheitlichkeit können wir Grafiken durch unsere eigenen ersetzen.

Die Bilder werden immer auf der gleichen Ordnerebene in einem `.images`-Verzeichnis gespeichert. Sie werden dann auf diese Weise verlinkt:

```markdown
![Test image](./.images/app48.png)
```

Gerendert

![Test image](/files/iB6ucgWsUfw9Nmcfmhzq)

***

### Links

Links werden immer automatisch umgewandelt und erfordern keinen zusätzlichen Code.

***

### Hints

Hinweise können mit der folgenden Syntax erstellt werden:

```markdown
<div data-gb-custom-block data-tag="hint" data-style='info'>

Hello world

</div>
```

Diese Werte sind möglich: `info`, `success`, `danger` & `warning`

Beispiele:

{% hint style="info" %}
Info
{% endhint %}

{% hint style="success" %}
Erfolg
{% endhint %}

{% hint style="danger" %}
Error/Fehler
{% endhint %}

{% hint style="warning" %}
Warnung
{% 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://docs.foe-helper.com/deutsch/anleitung/markdown.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.
