Markdown 2 基础语法
Markdown 2 基础语法
Markdown 列表语法 | Markdown 官方教程
Markdown 扩展语法入门 | Markdown 官方教程
Markdown 工具 | Markdown 官方教程
标题:
1234567891011# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题
标题除了可以通过 #来设置,还可以通过 ctrl + 数字键 1,2,3 来设置
列表:
无序列表
语法很简单,只需要在你的文字前面加上一共 - 或 * 就行了.
1-我是第一行 \*我是第二行 -我是第三行
有序列表
在文字前加 1. 2. 3. 的符号
11.我是第一行 2.我是第二行 3.我是第三行
注意:- * 等符号要和文字之间加一共空格
引用:
只需要在文本在之前加入 > 这种尖括号
12> 我一直在使用引用> 重开始到现在
图片和链接
12图片为:![]()链接为:[]()
示例:
1[图片名称](http://b.hiphotos.baidu.com/image/pic/item/0823dd54564e92 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1$ hexo new "My New Post"
More info: Writing
Run server
1$ hexo server
More info: Server
Generate static files
1$ hexo generate
More info: Generating
Deploy to remote sites
1$ hexo deploy
More info: Deployment


