Skip to content

Markdown

Markdown Cheat Sheet

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

Heading

1
2
3
# H1
## H2
### H3

Bold

1
**bold text**

Italic

1
*italicized text*

Blockquote

1
> blockquote

Ordered List

1
2
3
1. First item
1. Second item
1. Third item

Unordered List

1
2
3
- First item
- Second item
- Third item

Code

1
`code`

Horizontal Rule

1
---
1
[Markdown Guide](https://www.markdownguide.org)

Image

1
![alt text](https://www.markdownguide.org/assets/images/tux.png)

Extended Syntax

1
These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

Table

1
2
3
4
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

Fenced Code Block

1
2
3
4
5
6
7
    ```
    {
      "firstName": "John",
      "lastName": "Smith",
      "age": 25
    }
    ```

Footnote

1
2
3
Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Heading ID

1
### My Great Heading {#custom-id}

Definition List

1
2
term
: definition

Strikethrough

1
~~The world is flat.~~

Task List

1
2
3
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

Emoji

1
2
3
That is so funny! :joy:

(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))

Highlight

1
I need to highlight these ==very important words==.

Subscript

1
H~2~O

Superscript

1
X^2^