0%

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

marckdown常用语法

换行

1
E = mc^2
1
需要换行时在后面输入两个空格,然后回车

标题

1
2
3
# 这是H1
## 这个是H2
### 这个是H3

区块引用

1
使用>的引用方式,例如: > 引用的内容

列表

1
2
3
4
1. 有序列表
直接在数字后面加上点号
2. 无序列表
在每一行前面加上*号、+号或者-号即可

分区代码块

四个空格(或一个tab),或者代码区间上下边缘使用反单引号进行代码区间的隔离  

分割线

1
在一行中用三个或三个以上的*号或-即可输出分割线
阅读全文 »