Learn how to structure and style your content with headers, formatting, and links.
Headers define the hierarchy of your content and automatically generate navigation anchors. They also appear in the table of contents, helping readers quickly scan through documentation.
Add # symbols before text to create headers at various levels:
## Main section header
### Subsection header
#### Nested subsection headerMarkdown text styling is supported for emphasis, highlighting, and readability.
Use these common syntax options:
**bold text** → bold text*italic text* → italic text~~strikethrough~~ → You can mix multiple styles at once for clarity:
**_bold and italic_**
**~~bold and strikethrough~~**
*~~italic and strikethrough~~**For formulas, notes, or variables, use HTML tags:
X<sup>2</sup> → X2H<sub>2</sub>O → H2OLinks connect users to internal pages or external resources. Always use descriptive link text for better accessibility.
Reference other docs with root-relative paths:
[Getting Started](/)
[Commands](/commands)Point to external pages by including full URLs:
[Markdown Guide](https://www.markdownguide.org/)Blockquotes are used to visually highlight key information, quotations, or examples.
Prefix text with > for a single-line blockquote:
> Highlighted message or quoteHighlighted message or quote
For larger quotes spanning more than one paragraph:
> This is a blockquote that spans multiple lines.
> It can include several paragraphs of text.
> Each new line starts with a `>` symbol.This is a blockquote that spans multiple lines. It can include several paragraphs of text. Each new line starts with a
>symbol.
Control spacing to improve readability and layout.
Separate paragraphs with blank lines:
First paragraph.
Second paragraph.First paragraph.
Second paragraph.
For shorter breaks inside the same paragraph, use <br />:
This is one line.<br />
This is the next line.This is one line.
This is the next line.