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

$ hexo new "My New Post"
简写命令:hexo n "My New Post"

新建一篇博文,新建的md文件位于:hexo当前目录/source/_posts中。
More info: Writing

Run server

$ hexo server
简写命令:hexo s

这个命令是开启本地hexo服务用的,可以访问http://localhost:4000/进行本地预览。
More info: Server

Generate static files

$ hexo generate
简写命令:hexo g

一般部署上去的时候都需要编译一下,编译后,会出现一个 public 件夹,将所有的md文件编译成html文件 。
More info: Generating

Deploy to remote sites

$ hexo deploy
简写命令:hexo d

执行这个命令可以将博客部署到git。
More info: Deployment

清除 public

$ hexo clean

当 source 文件夹中的部分资源更改过之后,特别是对文件进行了删除或者路径的改变之后,需要执行这个命令,然后重新编译。

Tips

1、当执行hexo d部署博客时遇到被hang住没反应的时候,按Crtl + C退出然后执行:hexo clean再执行:hexo d -g即可!
2、hexo d -g 部署到远程(相当于先执行hexo g再执行hexo d)
3、hexo s -d 启动本地预览

Markdown语法

1、分段: 两个回车
2、换行 两个空格 + 回车
3、标题 # ~ ###### 井号的个数表示几级标题,即Markdown可以表示一级标题到六级标题
4、引用 >
5、列表 * , + , - , 1. ,选其中之一,注意后面有个空格
6、代码区块 四个空格 开头
7、链接 [文字](链接地址)
8、图片 ![图片说明](图片地址) ,图片地址可以是本地路径,也可以是网络地址
9、强调 **文字** , __文字__ , _文字_ , *文字*
10、代码 ```,```

More info: Markdown更多语法

文章目录
  1. 1. Quick Start
    1. 1.1. Create a new post
    2. 1.2. Run server
    3. 1.3. Generate static files
    4. 1.4. Deploy to remote sites
    5. 1.5. 清除 public
    6. 1.6. Tips
    7. 1.7. Markdown语法
|