1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| </code></td></tr> <tr><td><a href="https://markdown.com.cn//extended-syntax/definition-lists.html">定义列表(Definition List)</a></td> <td><code> term<br> : definition </code></td></tr> <tr><td><a href="https://markdown.com.cn//extended-syntax/strikethrough.html">删除线(Strikethrough)</a></td> <td><code>~~The world is flat.~~</code></td></tr> <tr><td><a href="https://markdown.com.cn//extended-syntax/task-lists.html">任务列表(Task List)</a></td> <td><code> - [x] Write the press release<br> - [ ] Update the website<br> - [ ] Contact the media </code></td></tr></tbody></table>
# 一、标题语法
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
#与字要有空格
正常
# 二、粗体斜体
**粗体**
***斜体***
>引用信息 > >啦啦啦 > >>引用引用
# 三、项
- 123456 - 234567 - 345678
# 四、代码
代码
`print('hello world,this is code')`
# 五、分割线
***
test
---
# 六、删除线
~~heihei~~
# 七、链接:
`[显示](指向链接)`
这是一个链接 [百度](https://www.baidu.com)。
<https://www.baidu.com>
email: <ljworg@163.com>
[引用][1]
[1]: https:///www.baidu.com
连接中含有空格时,请用%20代替
# 八、图片:
``
# 九、表格:
>要添加表,请使用三个或多个连字符(---)创建每列的标题,并使用管道(|)分隔每列。
| hello | world | | ----- | ----- | | test | test2 |
| Syntax | Description | | --------- | ----------- | | Header | Title | | Paragraph | Text |
# 十、代码块:
|