Headers

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# H1
## H2
### H3
#### H4
##### H5
###### H6

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1
这个是什么意思呢?
我也不知道
======

Alt-H2
这个也是这个意思捏。
明白了吧
------

H1

H2

H3

H4

H5
H6

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1
这个是什么意思呢?
我也不知道

Alt-H2
这个也是这个意思捏。
明白了吧

强调

1
2
3
4
斜体,使用*星号*_下划线_(注意空格)
粗体,使用**星号**__下划线__
粗体加斜体,需要将**星号和 _下划线_**结合
擦除,使用两个波浪线~~擦除这句~~

斜体,使用星号下划线(注意空格)
粗体,使用星号下划线
粗体加斜体,需要将**星号和 下划线**结合
擦除,使用两个波浪线擦除这句

表单

链接在这里,需要自己查询
https://butterfly.js.org/posts/89757140/#Lists

链接

1
2
3
4
5
6
7
8
9
10
11
12
13
[这是一个链接](https://www.baidu.com)
[这是一个有标题的链接](https://www.baidu.com "百度一下")
[这是一个引用样式的链接][Arbitrary case-insensitive reference text]
[可以在引用样式中使用数字][1]
[使用储存库文件的相对引用][2]
[可以在引用样式中使用字母][a]
或者留空直接只用链接文本本身[https://lczyyds.github.io/ ]

[arbitrary case-insensitive reference text]: https://space.bilibili.com/471175608?spm_id_from=333.1007.0.0
[1]: https://lczyyds.github.io/
[2]: /img/love.jpg
[a]: https://lczyyds.github.io/

这是一个链接
这是一个有标题的链接
这是一个引用样式的链接
可以在引用样式中使用数字
使用储存库文件的相对引用
可以在引用样式中使用字母
或者留空直接只用链接文本本身[https://lczyyds.github.io/ ]

图片

1

在线样式
alt text

引用样式:
alt text

视频

1
2
3
4
5
6
7
<a href="https://www.bilibili.com/video/BV18d4y1P7p9/?spm_id_from=333.999.0.0
" target="_blank"><img src="/img/game.jpg"
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>

Pure markdown version:

[![IMAGE ALT TEXT HERE](/img/game.jpg)](https://www.bilibili.com/video/BV18d4y1P7p9/?spm_id_from=333.999.0.0)

IMAGE ALT TEXT HERE

Pure markdown version:

IMAGE ALT TEXT HERE

表格

https://butterfly.js.org/posts/89757140/#Tables

水平线

1
2
3
4
5
6
7
8
9
10
11
---

Hyphens

***

Asterisks

___

Underscores

Hyphens


Asterisks


Underscores

其他

1
<p>To reboot your computer, press <kbd>ctrl</kbd>+<kbd>alt</kbd>+<kbd>del</kbd>.</p>

To reboot your computer, press ctrl+alt+del.

1
2
3
4
5
6
7
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>

<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
Definition list
Is something people use sometimes.
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>