A Markdown cheat sheet providing a quick overview of all the Markdown syntax elements.
Element | Syntax |
---|---|
Heading | # H1 ## H2 ### H3 |
Link | [text](https://example.com) |
Image | ![alt text](image.png) |
Element | Syntax |
---|---|
Bold | **bold text** |
Italic | *italic* |
Strikethrough | ~~strikethrough~~ |
Blockquote | > blockquote |
Ordered list | 1. first 2. second 3. third |
Unordered list | - first - second - third |
Task list | - [x] first - [ ] second - [ ] third |
Emoji | Wow you are so funny :joy: |
Element | Syntax |
---|---|
Table | | Syntax | Description | | ----------- | ----------- | | text | description | |
Fenced code block | `test ` |
Footnote | Here's a sentence with a footnote. [^1] [^1]: This is the footnote. |
Heading ID | ## Heading {#custom-id} |
Subscript | H~2~O |
Superscript | X^2^ |
bold text
italic text
strikethrough text
blockquote text
- first
- second
- third
- first
- second
- third
- first
- second
- third
Wow you are so funny 😂
Syntax | Description |
---|---|
text | description |
code...
Here's a sentence with a footnote. 1
Footnotes
-
This is the footnote. ↩