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 StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
MarkDown文档基本语法
MarkDown文档基本语法@[toc]
一、标题“#”表示标题,几个“#”代表几级标题,最多六级:
1234567891011# 一级标题## 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题
二、 字体由“*”和“_”来控制字体
12345678910**粗体**__粗体__*斜体*_斜体_***斜体加粗***___斜体加粗___~~删除线~~
三、列表1.无序列表
语法格式:*空格
12345无序列表* 第一* 第二* 第三* 第四
2.有序列表
语法格式:数字.空格 12345有序列表1. 第一2. 第二3. 第三4. 第四
3.列表嵌套12345678列表嵌套1. 第一项: - 1.1 - 1.2 - 1.32. 第二项: - 2.1 - 2.2
四、分割线
语法格式123---_ _ _***
五、 引用
语法格式:>空格12345> 引用内容1 > 引用内容2 > 引用内容3 > > 引用内容4
引用嵌套
123> 引 ...