Picture of the author

Markdown
2023-08-02
关于markdown常用写法

Headings

MarkdownRendered Output
# Heading level 1

一级标题

# Heading level 2

二级标题

# Heading level 3

三级标题

# Heading level 4

四级标题

# Heading level 5
五级标题
# Heading level 6
六级标题
boldbold
italicItalic
bold & italicbold & Italic
> quotesquotes

列表

- 1
- 2
- 3
  • 1
  • 2
  • 3

order列表

1. 1
2. 2
3. 3
  1. 1
  2. 2
  3. 3

链接

[github](https://www.github.com)

github

图片

![github](https://www.github.com)

image

分割线

---

Github Flavored Markdown

Footnote

A note[^1]

[^1]: Big note.

A note1

Strikethrough

~one~ or ~~two~~ tildes.

one or two tildes.

TaskList

* [ ] to do
* [x] done
  • to do
  • done

Table 对齐

| a | b  |  c |  d  |
| - | :- | -: | :-: |
| 1 | 2  |  3 |  4  |
abcd
1234

Footnotes

  1. Big note.