> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ecge.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown syntax

> Text, titles, and formatting in standard Markdown and MDX

## Titles

Best used for section headers.

```md theme={null}
## Titles
```

### Subtitles

Best used for subsection headers.

```md theme={null}
### Subtitles
```

<Tip>
  Each **title** and **subtitle** creates an anchor and appears in the table of contents.
</Tip>

## Text formatting

Standard Markdown formatting is fully supported. Wrap text in `**`, `_`, or `~` to style it.

| Style         | Syntax            | Result            |
| ------------- | ----------------- | ----------------- |
| Bold          | `**bold**`        | **bold**          |
| Italic        | `_italic_`        | *italic*          |
| Strikethrough | `~strikethrough~` | ~~strikethrough~~ |

Combine them: `**_bold and italic_**` renders as ***bold and italic***.

For superscript and subscript, use HTML:

| Style       | Syntax                   | Result                 |
| ----------- | ------------------------ | ---------------------- |
| Superscript | `<sup>superscript</sup>` | <sup>superscript</sup> |
| Subscript   | `<sub>subscript</sub>`   | <sub>subscript</sub>   |

## Links

Wrap text in `[]()` to create links: `[ecge docs](https://docs.ecge.dev)`.

Internal links should be root-relative, e.g. `[configuration](/essentials/settings)`. Relative links like `../settings` work but load slower.

## Blockquotes

### Single line

```md theme={null}
> The quick brown fox jumps over the lazy dog.
```

> The quick brown fox jumps over the lazy dog.

### Multi-line

```md theme={null}
> First paragraph of the quote.
>
> Second paragraph of the quote.
```

> First paragraph of the quote.
>
> Second paragraph of the quote.

### LaTeX

ecge supports LaTeX rendering:

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>

```md theme={null}
<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>
```
