Markdown Support
We support all standard markdown features:
HeadingsCopied!
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Text FormattingCopied!
Bold text
Italic text
Strikethrough text
Inline code
**Bold text**
*Italic text*
~~Strikethrough text~~
`Inline code`
ListsCopied!
- Unordered list item
- Another item
- Nested item
- Another nested item
- Unordered list item
- Another item
- Nested item
- Another nested item
- Ordered list item
- Another item
- Nested item
- Another nested item
1. Ordered list item
2. Another item
1. Nested item
2. Another nested item
Links and ImagesCopied!
[Link text](https://example.com)

Code BlocksCopied!
```javascript
function example() {
return "Hello, World!";
}
BlockquotesCopied!
This is a blockquote
It can span multiple lines
> This is a blockquote
>
> It can span multiple lines
TablesCopied!
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 |
Task ListsCopied!
- [x] Completed task
- [ ] Pending task
- [ ] Another pending task
GitHub Flavored Markdown (GFM)Copied!
Guide Elements includes full support for GitHub Flavored Markdown:
- Strikethrough:
~~text~~
- Task Lists:
- [x]
and- [ ]
- Tables: Full table support with alignment
- Autolinks: URLs are automatically converted to links
- Disallowed Raw HTML: Security-focused HTML filtering