Hexo 常用命令笔记

常用

1
2
3
4
5
6
7
8
9
10
11
12
13
hexo n == hexo new "a new post"  新建文章,最好用双引号括起来

hexo g == hexo generate 生成静态文件到 public 文件夹

hexo s == hexo server Server at localhost:4000,根目录为 public

hexo d == hexo deploy 部署到远程服务里,例如 github

hexo p == hexo publish 新建草稿 draft

hexo clean 清除缓存文件

hexo new page "about" 生成 /source/about/index.md 文件

服务器

1
2
3
4
5
6
7
hexo server    默认为动态监听

hexo server -s 静态模式

hexo server -p 5000 指定端口

hexo server -i 10.20.62.123 指定IP

文章摘要

1
2
3
4
5
6
7
方式1:在front-matter中编写

description: "This a digest bla bla..."

方式2

在文章中插入一行 <!--more--> 以上部分为摘要