Back Back to Editor

The Ultimate Markdown Cheat Sheet (2026)

A quick reference for the markdown syntax you use every day. Bookmark or print and keep it handy.

Use this page as a quick reference while you write. All of this syntax works in Modern Markdown Editor and in most markdown-friendly tools.

Headings

SyntaxResult
# Heading 1Largest heading
## Heading 2Section
### Heading 3Subsection
#### ... ##### ... ######Smaller levels

Text style

SyntaxResult
**bold** or __bold__bold
*italic* or _italic_italic
~~strikethrough~~Strikethrough (where supported)
`code`Inline code

Lists

SyntaxResult
- item or * itemUnordered list
1. itemOrdered list
Indent with 2–4 spacesNested lists

Links and images

SyntaxResult
[text](url)Link
[text](url "title")Link with tooltip
![alt](image-url)Image

Blockquote and code block

SyntaxResult
> quoteBlockquote
``` on its own line, code, then ```Fenced code block (with optional language)

Tables

SyntaxResult
| A | B |
| --- | --- |
| 1 | 2 |
Table with header and alignment

Horizontal rule

--- or *** or ___ on its own line gives a horizontal line.

Practice in the editor: open Modern Markdown Editor, paste or type any of these examples, and watch the preview update in real time. Once this cheat sheet is in your muscle memory, you’ll write faster in any markdown tool.