Text Formatting
Markdown
~~strikethrough~~
Headings
Use # through ###### for headings 1-6
Lists
Markdown
- Item 1
- Item 2
- Item 3
Markdown
1. First item
2. Second item
3. Third item
Result
- First item
- Second item
- Third item
Markdown
- [ ] Todo item
- [x] Done item
Links & Images
Markdown
[Link text](https://example.com)
Markdown

Result
Displays an image with alt text
💡 Tip: Use the Image button in toolbar to upload and auto-compress images
Code Blocks
Markdown
```javascript
function hello() {
console.log("Hello!");
}
```
Result
Syntax-highlighted code block
💡 Supports JavaScript, Python, CSS, HTML, and many more languages
Quotes & Dividers
Markdown
> This is a quote
Tables
Markdown
| Column 1 | Column 2 |
|----------|----------|
| Data 1 | Data 2 |
Result
Creates a formatted table
💡 Tip: Use the Table button in toolbar to insert a table template
Keyboard Shortcuts
Ctrl/Cmd + B Bold
Ctrl/Cmd + I Italic
Ctrl/Cmd + K Link
Ctrl/Cmd + E Code
Ctrl/Cmd + S Download
Ctrl/Cmd + F Find
Ctrl/Cmd + O Outline
Ctrl/Cmd + ? This help