Learn MarkdownIn Minutes
The free, no-nonsense guide to Markdown syntax. Copy examples directly into your docs, READMEs, and notes.
Quick Reference Cards
One-Click Copy
Beginner Friendly
Quick Reference
Switch between Markdown syntax and HTML output using the tabs below
Headings
BasicStructure your content with six heading levels
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6Text Emphasis
BasicMake text bold, italic, or strikethrough
**Bold text**
*Italic text*
***Bold and italic***
~~Strikethrough~~Lists
BasicOrganize items with bullets or numbers
- Item 1
- Item 2
- Nested item
- Another nested
1. First item
2. Second item
3. Third itemLinks & Images
BasicInsert clickable links and images
[Link text](https://example.com)

[Link with title](url "Title")Code
IntermediateDisplay inline code and code blocks
Inline `code` example
```javascript
function hello() {
console.log("Hello!");
}
```Blockquotes
BasicQuote text or highlight information
> This is a blockquote
> It can span multiple lines
> Nested quotes
>> Are also possibleTables
IntermediatePresent data in rows and columns
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |Horizontal Rule
BasicSeparate sections with a divider line
Content above
---
Content belowTask Lists
IntermediateTrack to-dos with checkboxes
- [x] Completed task
- [ ] Incomplete task
- [ ] Another task