Posts Markdown Cheatsheet
Post
Cancel

Markdown Cheatsheet

Basic Syntax

Markdown ElementSyntax
Heading# Heading 1
## Heading 2
### Heading 3
Bold**bold_text**
Italic***Italic_text***
Blockquote` > blockquote `
Ordered List1. First
2. Second
3. Third
Unordered List- First
- Second
- Third
Code`code`
Horizontal Rule---
Image![alt text](image.jpg)
Link[tuxsisir](https://www.tuxsisir.com)

Extended Syntax

Table

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

Fenced Code Block

1
2
3
4
{
  "name": "John",
  "age": "Smith"
}

Footnote

1
2
This is a footnote sentence. [^1]
[^1]: And, this is footnote.

Heading ID

1
### My Custom Heading ID {#custom-id}

Definition List

1
2
term
: definition

Strikethrough

1
~~Love yourself.~~

Love yourself.

Task Lists

1
2
3
- [x] Go to Work
- [ ] Write Code
- [ ] Return home

Output:

  • Go to Work
  • Write Code
  • Return home

Further Markdown Reference: https://www.markdownguide.org/cheat-sheet/

This post is licensed under CC BY 4.0 by the author.