这是一个 Markdown 语法测试页面,同时记录个人常用语法。

Static Badge(微标)

![](https://img.shields.io/badge/微标示例-FF1D05)

标题

# H1
## H2
### H3
#### H4
##### H5
###### H6

效果如下:

H1

H2

H3

H4

H5
H6

强调

今晚一起吃**火锅**吧!

今晚一起吃火锅吧!

删除线

今天吃~~自助餐~~吧!

今天吃自助餐吧!

列表

有序列表

1. 汽车
2. 牛奶
3. 房子
  1. 汽车
  2. 牛奶
  3. 房子

无序列表

- 足球
- 面包
- 可乐

代码高亮

```python
import request
import time

time.sleep_ms(1000)
print("Hello World")
```

效果如下:

import request
import time

time.sleep_ms(1000)
print("Hello World")

链接

[我的博客](https://dishao123.github.io)

我的博客

图片

![我的头像](https://avatars.githubusercontent.com/u/58305876?v=4)

我的头像

表格

| 左对齐 | 中对齐 | 右对齐 |
|---|:---:|---:|
| 牛奶 | 可乐 | 面包 |
| 饮料 | 早餐 | 吃饭 |
左对齐 中对齐 右对齐
牛奶 可乐 面包
饮料 早餐 吃饭

大人,时代变了。别手搓了,还是用表格生成器吧!

水平线

---
我在2条水平线中间
***

我在2条水平线中间


引用

> 落霞与孤鹜齐飞,秋水共长天一色。《滕王阁序》--王勃

落霞与孤鹜齐飞,秋水共长天一色。《滕王阁序》--王勃

对比

```diff
+ this text is highlighted in green
- this text is highlighted in red
```
+ this text is highlighted in green
- this text is highlighted in red

字体颜色

```CSS
Some text in green! 123
```
Some text in green! 123
```P4
Some text in blue! 123
```
Some text in blue! 123
```Mint
Some text in blue with additional keyword highlighting! 123
```
Some text in blue with additional keyword highlighting! 123
```JSON
Some text highlighted in red! 123
```
Some text highlighted in red! 123

HTML 语法

等宽字体

<samp>Monospaced text</samp>

Monospaced text

下划线

<ins>Underlined text</ins>

Underlined text

单元格

<table><tr><td>Boxed text</td></tr></table>
Boxed text

展开/折叠

<details>
<summary>Item summary with dropdown</summary>

Dropdown content (supports **markdown** ~~yay!~~)

```json
{
  awesome: "true"
}
```
</details>

效果如下:

Item summary with dropdown

Dropdown content (supports markdown yay!)

{
  awesome: "true"
}

粗体斜体

__*Italic-bold*__

Italic-bold

上标

Superscript<sup>TM</sup>

SuperscriptTM

斜体上标

Superscript-italic<sup>*tm*</sup>

Superscript-italictm

下标

Subscript<sub>x</sub>

Subscriptx

粗体下标

Subscript-bold<sub>**min**</sub>

Subscript-boldmin

~~__*Italic-bold-strikethrough*__~~

Italic-bold-strikethrough

未完待续...

转载请注明出处,谢谢😘