This Markdown cheat sheet provides a quick overview of all Markdown syntax elements. Since it is impossible to cover every edge case, if you need more information about any of these elements, please consult the reference guides for Basic Syntax and Extended Syntax.
Basic Syntax
The following are the elements outlined by John Gruber in his original design document. All Markdown applications support these elements.
--- title: Markdown Syntax date: 2026-03-28 22:00 excerpt: Some examples of Markdown syntax. appendRawMarkdown: true cover: /img/markus-spiske-mygLDe2KvSg-unsplash.jpg coverInfo: author: Markus Spiske url: https://unsplash.com/photos/a-white-wall-with-a-clock-on-it-mygLDe2KvSg toc: false translations: ['zh-CN'] ---
Thanks to [The Markdown Guide](https://www.markdownguide.org)!
This Markdown cheat sheet provides a quick overview of all Markdown syntax elements. Since it is impossible to cover every edge case, if you need more information about any of these elements, please consult the reference guides for [Basic Syntax](https://www.markdownguide.org/basic-syntax/) and [Extended Syntax](https://www.markdownguide.org/extended-syntax/).
## Basic Syntax
The following are the elements outlined by John Gruber in his original design document. All Markdown applications support these elements.
### Headings
# H1
## H2
### H3
### Bold
**Bold text**
### Italic
_Italic text_
### Blockquotes
> Blockquote
### Ordered Lists
1. First item 2. Second item 3. Third item
### Unordered Lists
- First item - Second item - Third item
### Horizontal Rules
---
### Strikethrough
~~The world is flat.~~ ~~
### Links
[Markdown Guide](https://www.markdownguide.org)
### Images

### Tables
| Syntax | Description | | ---- | ---- | | Header | Title | | Paragraph | Text |