> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Documentation for the Markdown format

# Markdown

| Input | Output | Alias |
| ----- | ------ | ----- |
| ✗     | ✔      | `MD`  |

<h2 id="description">
  Description
</h2>

You can export results using [Markdown](https://en.wikipedia.org/wiki/Markdown) format to generate output ready to be pasted into your `.md` files:

The markdown table will be generated automatically and can be used on markdown-enabled platforms, like Github. This format is used only for output.

<h2 id="example-usage">
  Example usage
</h2>

```sql theme={null}
SELECT
    number,
    number * 2
FROM numbers(5)
FORMAT Markdown
```

```results theme={null}
| number | multiply(number, 2) |
|-:|-:|
| 0 | 0 |
| 1 | 2 |
| 2 | 4 |
| 3 | 6 |
| 4 | 8 |
```

<h2 id="format-settings">
  Format settings
</h2>
