Markdown Syntax Guide
gmero
·
This article introduces commonly used Markdown syntax.
Headings
Use # to create headings, the number indicates the level.
Text Styles
- Bold text
- Italic text
Strikethrough
Links and Images

Code
Inline code: const x = 1;
Code block:
def hello_world():
print("Hello, World!")
Lists
Unordered list:
- Item 1
- Item 2
- Item 3
Ordered list:
- First step
- Second step
- Third step
Blockquote
This is a quoted text. It can span multiple lines.
Table
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| A | B | C |
| D | E | F |
That’s the basic Markdown syntax!