MD操作

233 阅读1分钟

MD基本操作

一、标题

标题(#+空格)
# 一级标题
## 二级标题
### 三级标题
...
###### 六级标题

二、序号

* - + 都可以转变成带点序号
例:
* hello world 带点的
- hello victor 带点的
+ hello hero 带点的
 
1. hello world 带序号
2. hello victor 带序号

三、斜体/粗体/下划线/删除线/分割线/格式

*hello hero 斜体*
**hello hero 加粗**  (ctrl+B)
<u>hello hero 下划线</u>
~~hello hero 删除线~~
*** (横线)
```+type 例如:```java ```python

hello hero 斜体

hello hero 加粗 (ctrl+B)

hello hero 下划线

hello hero 删除线


public static void main(String[] args) {
        System.out.println("hello world");
    }

四、链接与图片

插入链接: [显示文本](链接)
例:[百度](https://baidu.com/)
插入图片:![xxx](xxx.img)

插入链接:百度

插入图片: Sentinel Logo

五、引用

> 引用文本

引用文本