Format text

Format text in your docs with Markdown formatting like headings, bold, italic, links, blockquotes and other inline styling options in MDX.

Headers

Headers organize your content and create navigation anchors. They appear in the table of contents and help users scan your documentation.

markdown
## Heading 2 - main section header
### Heading 3 - subsection header
#### Heading 4 - sub-subsection header

Typography

markdown
**Bold** - Bold text

_Italic_ - Italic text

~strikethrough~ - strikethrough text

> This is one line blockquotes

`inline code`

> This is the first paragraph of a multi-line block quote.
>
> This is the second paragraph, separated by an empty line with `>`.

[Create internal Link](/docs)

[Create external Link](https://docubook.pro)

List

markdown
- one line
- two line
- three line
    - sub three line
---
1. number one
2. number two
3. number three

Paragraph breaks

markdown
This is the first paragraph.

This is the second paragraph, separated by a blank line.

Last updated May 4, 2026