Stop GooglingMarkdown Syntax
A copy-ready reference for every Markdown rule. Look it up, click copy, get back to writing.
16 syntax categories
Copy any example in one click
Works on GitHub, Notion & more
readme.md
MarkdownRendered output
The Basics, Side by Side
See the Markdown you type, the HTML it produces, and a live preview. Copy any example.
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](https://example.com "Visit Example")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