Markdown Support

We support all standard markdown features:

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Text Formatting

Bold text Italic text Strikethrough text Inline code

**Bold text**
*Italic text*
~~Strikethrough text~~
`Inline code`

Lists

  • Unordered list item
  • Another item
    • Nested item
    • Another nested item
- Unordered list item
- Another item
  - Nested item
  - Another nested item
  1. Ordered list item
  2. Another item
    1. Nested item
    2. Another nested item
1. Ordered list item
2. Another item
   1. Nested item
   2. Another nested item
[Link text](https://example.com)
![Alt text](https://example.com/image.png)

Code Blocks

```javascript
function example() {
  return "Hello, World!";
}
```

Blockquotes

This is a blockquote

It can span multiple lines

> This is a blockquote
> 
> It can span multiple lines

Tables

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 Lists

- [x] Completed task
- [ ] Pending task
- [ ] Another pending task

GitHub Flavored Markdown (GFM)

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