Learn how to use the markdown editor and its powerful features
Create headings using the # symbol. More # symbols = smaller heading.
# Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6
**Bold text** or __Bold text__ *Italic text* or _Italic text_ ~~Strikethrough text~~ <u>Underlined text</u>
Result: Bold text, Italic text, Strikethrough text, Underlined text
Unordered lists use -, *, or +:
- Item 1 - Item 2 - Nested item - Another nested item - Item 3
Ordered lists use numbers:
1. First item 2. Second item 3. Third item
> This is a blockquote > It can span multiple lines > > And include multiple paragraphs
Use triple backticks for code blocks. Specify the language for syntax highlighting:
```javascript
function greet(name) {
console.log(`Hello, ${name}!`);
return true;
}
greet("World");
``````python
def calculate_fibonacci(n):
if n <= 1:
return n
return calculate_fibonacci(n-1) + calculate_fibonacci(n-2)
print(calculate_fibonacci(10))
```The editor supports syntax highlighting for 13 languages:
[Link text](https://example.com) [Link with title](https://example.com "Hover to see title")
Keyboard shortcut: Ctrl+Shift+U (Cmd+Shift+U on Mac)
Tip: Click the link button or press the shortcut again while your cursor is inside a link to remove the link formatting (toggle off).
 
Keyboard shortcut: Ctrl+Shift+I (Cmd+Shift+I on Mac)
Tip: Click the image button or press the shortcut again while your cursor is inside an image to remove the image formatting (toggle off).
Embed rich content from supported providers using the special embed: syntax:
  
Security Note: Only URLs from these 7 providers are allowed. Unsupported providers will show an error.
Keyboard shortcut: Ctrl+Shift+E (Cmd+Shift+E on Mac)
Tip: Click the embed button or press the shortcut again while your cursor is inside an embed to remove the embed formatting (toggle off).
Add a cover image to your post using the cover image input at the top of the editor.
Tip: Use free image services like Unsplash or Pexels for high-quality cover images.
Speed up your editing with these keyboard shortcuts:
| Action | Windows/Linux | Mac |
|---|---|---|
| Bold | Ctrl+B | Cmd+B |
| Italic | Ctrl+I | Cmd+I |
| Strikethrough | Ctrl+Shift+X | Cmd+Shift+X |
| Insert Link | Ctrl+Shift+U | Cmd+Shift+U |
| Code Block | Ctrl+Shift+C | Cmd+Shift+C |
| Blockquote | Ctrl+Shift+9 | Cmd+Shift+9 |
| Unordered List | Ctrl+Shift+8 | Cmd+Shift+8 |
| Ordered List | Ctrl+Shift+7 | Cmd+Shift+7 |
| Heading | Ctrl+Shift+H | Cmd+Shift+H |
| Insert Image | Ctrl+Shift+I | Cmd+Shift+I |
| Insert Embed | Ctrl+Shift+E | Cmd+Shift+E |
| Horizontal Rule | Ctrl+Shift+- | Cmd+Shift+- |