1字体加粗:
**需要加粗的文字**
需要加粗的文字
2字体倾斜
*倾斜的文字*
倾斜的文字
3中划线(删除线)
~~删除的文字~~
删除的文字
4字体居中-html
<center>居中文字</center>
<center>居中文字</center>
5字体颜色-html
<font color=red>字体红色</font>
<font color=red>字体红色</font>
6引用链接
[3] [引用链接](https://www.sohu.com/a/308762644_734208)
[3] 引用链接
7插入图片

8 插入表格
使用html语言辅助,否则markdown只能实现简单的表格插入
可以配合在线的表格生成器生成html语句,但是要注意使用紧凑型代码,否则会产生很多空行造成页面大量的空白。
可以用在线的HTML表格生成器,地址:https://www.tablesgenerator.com/html_tables
示例:
<table><thead><tr> <th colspan="2">标题1</th> <th>标题2</th> <th>标题3</th> <th>标题4</th> </tr></thead><tbody> <tr> <td>示例</td> <td>S</td> <td rowspan="2">S</td><td colspan="2">S</td> </tr> <tr> <td>示例</td> <td>S</td> <td>S</td> <td>S</td> </tr> <tr> <td colspan="3">示例</td> <td>S</td> <td>S</td> </tr></tbody></table>
标题1 | 标题2 | 标题3 | 标题4 | |
---|---|---|---|---|
示例 | S | S | S | |
示例 | S | S | S | |
示例 | S | S |