documentation/guides/docs/components/markdown-support.md
We support all standard Markdown features (actually, we're using GitHub-flavored Markdown).
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Bold text
Italic text
Strikethrough text
Inline code
**Bold text**
*Italic text*
~~Strikethrough text~~
`Inline code`
- Unordered list item
- Another item
- Nested item
- Another nested item
1. Ordered list item
2. Another item
1. Nested item
2. Another nested item
[Absolute URLs](https://example.com)
[Relative link](../another-markdown-file.md)

```javascript
function example() {
return "Hello, World!";
}
```
function example() {
return "Hello, World!";
}
This is a blockquote
It can span multiple lines
> This is a blockquote
>
> It can span multiple lines
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
| Header 1 | Header 2 | Header 3 |
| -------- | -------- | -------- |
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
- [x] Completed task
- [ ] Pending task
- [ ] Another pending task
We support GitHub-style alerts for highlighting important information:
[!NOTE] Useful information that users should know, even when skimming content.
[!TIP] Helpful advice for doing things better or more easily.
[!IMPORTANT] Key information users need to know to achieve their goal.
[!WARNING] Urgent info that needs immediate user attention to avoid problems.
[!CAUTION] Advises about risks or negative outcomes of certain actions.
> [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.