markdown 基本语法
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题(最多6级)
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题(最多6级)
引用
引用的内容
> 引用的内容
列表
- 项目1
- 项目2
- 项目1
- 项目2
- 项目1
- 项目2
- 项目1
- 项目2
1. 项目1
2. 项目2
* 项目1
* 项目2
+ 项目1
+ 项目2
- 项目1
- 项目2
缩进
缩进两个空格
缩进两个空格
代码块
code here
npm install markdown-it --save
npm install github-markdown-css --save
分隔线
– – –
* * *
***
*****
- - -
----------
链接
这是 百度 链接
这是 [百度](http://www.baidu.com/ "百度") 链接
强调
我是强调的内容
我是强调的内容
我是强调的内容
我是强调的内容
*我是强调的内容*
**我是强调的内容**
_我是强调的内容_
__我是强调的内容__
图片
![图1-1 我国古代使用的提水工具-辘轳](localdata/image/main.jpg "图1-1 我国古代使用的提水工具-辘轳")
表格
| Tables | Are | Cool |
| ------------- | :-----------: | ----: |
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
vue中使用markdown,可以引入 github-markdown-css和markdown-it
https://markdown-it.docschina.org/
https://github.com/sindresorhus/github-markdown-css
npm install markdown-it --save
npm install github-markdown-css