docs/markdown语法笔记.md
2024-05-26 07:48:30 +08:00

110 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Markdown 基本语法
## 标题
使用#号标记可以表示1-6级标题 随#的个数递增,一级标题字号最大,六级标题字号最小
列如:
```
# 一级标题
## 一级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
```
## 字体
- 粗体
**粗体**
```
**粗体**
```
- 斜体
- 删除
## 链接
```
[链接名字](链接地址)
```
## 图片
```
[图片描述](图片地址)
```
## 列表
- 无序列表
```
* 刘备
+ 张飞
- 关羽
```
- 有序列表
```
1. 刘备
2. 张飞
```
## 分割线
```
***
---
```
## 删除线
```
~~刘备~~
```
## 下划线
```
<u>文本</u>
```
## 代码块
如果在一行内需要引用代码,只需要用反引号`引起来就好了。
```java
print("hello world")
```
## 表格
表格使用|来分割不同的单元格使用-来分隔表头和其他行
```
|项目 | 价格 | 数量 |
|------------|----------|-----------|
| 计算机 | \$1600 | 5 |
| 手机 | \$12 | 12 |
| 管线 | \$1 | 234 |
```
## 脚注
在需要添加脚注的文本后加上[^脚注标识],然后在文档的任意位置定义脚注内容
```
这是一个列句[^1]
[^1]: 脚注内容
```