Skip to content

- Markdown

1. What is Markdown?

  • Markdown notation is one of the "markup languages" that describe text in a structured manner.
  • It can automatically display paragraphs, headings, decorations, etc. using specific symbols.
  • A lightweight markup language that can be converted into a decorated HTML document

2. Features of Markdown

  • Can be copied and pasted
  • Can be used offline (even when there is no Internet connection, as long as you know the notation, you can create sentences)

3, Cheat sheet

Heading

# H1
## H2
### H3

Bold

**bold text**

Italic

*italicized text*

Blockquote

> blockquote

Ordered List

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

Unordered List

- First item
- Second item
- Third item

Code

`code`

Horizontal Rule

---

Link

[title](https://www.example.com)

Image

![alt text](./image.jpg)

Fenced Code Block

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Table

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