文章目录
Static Badge标题强调删除横线列表代码高亮链接图片表格水平线引用对比字体颜色HTML tricks参考Top

这是一个markdown格式的测试页面,也是个人经常会使用的格式记录。

Static Badge

![](https://img.shields.io/badge/参考页面-orange)
Copied!

标题

# H1
## H2
### H3
#### H4
Copied!

强调

今天的天气真好啊,可以吃**冰激凌**吗?
Copied!

今天的天气真好啊,可以吃冰激凌吗?

删除横线

今天的天气真好啊,可以吃~~冰激凌~~吗?
Copied!

今天的天气真好啊,可以吃冰激凌吗?

列表

1. 看电视
2. 吃饭
3. 睡觉

- 乒乓球
- 篮球
- 羽毛球
Copied!
  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")
Copied!

链接

[我的博客](https://meekdai.github.io)
Copied!

我的博客

图片

![这是我的头像PNG](https://github.com/Meekdai/meekdai.github.io/assets/11755104/e4da3470-d4b1-4cc7-9d84-f7da69f90a76)
![这是我的头像SVG](https://blog.meekdai.com/avatar.svg)
Copied!

这是我的头像PNG

这是我的头像SVG

表格

| Table Heading 1 | Table Heading 2 | Center align    | Right align     | Table Heading 5 |
| :-------------- | :-------------- | :-------------: | --------------: | :-------------- |
| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
Copied!
Table Heading 1 Table Heading 2 Center align Right align Table Heading 5
Item 1 Item 2 Item 3 Item 4 Item 5
Item 1 Item 2 Item 3 Item 4 Item 5
Item 1 Item 2 Item 3 Item 4 Item 5

水平线

---
我在2个水平线中间
***
Copied!

我在2个水平线中间


引用

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

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

对比

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

字体颜色

Some text in green! 123
Copied!
```CSS
Some text in green! 123
```
Some text in blue! 123
Copied!
Some text in blue with additional keyword highlighting! 123
Copied!
```P4
Some text in blue! 123
```

```Mint
Some text in blue with additional keyword highlighting! 123
```
Some text highlighted in red! 123
Copied!
```JSON
Some text highlighted in red! 123
```

HTML tricks

Monospaced text

<samp>Monospaced text</samp>
Copied!

Underlined text

<ins>Underlined text</ins>
Copied!

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

Item summary with dropdown

Dropdown content (supports markdown yay!)

{
  awesome: "true"
}
Copied!
<details>
<summary>Item summary with dropdown</summary>

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

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

Italic-bold

__*Italic-bold*__
Copied!

SuperscriptTM

Superscript<sup>TM</sup>
Copied!

Superscript-italictm

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

Subscriptx

Subscript<sub>x</sub>
Copied!

Subscript-boldmin

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

Italic-bold-strikethrough

~~__*Italic-bold-strikethrough*__~~
Copied!

参考

更多GitHub Markdown 语法参考:

  1. https://github.com/Olwiba/Kickass-markdown/
  2. https://docs.github.com/zh/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax
❤️ 转载文章请注明出处,谢谢!❤️