Hexo常用指令&Front Matter
Hexo常用指令&Front Matter
Front Matter
重要的有两个:
tags:标签,可以打多个
categories:分类,只能放一个分类
tags
1 | 方式1: |
categories
1 | categories: Hexo |
Hexo常用指令
new
希望在_post
文件夹下创建文章:
1 | hexo new post "文章名[.md]" |
希望在_post/分类
文件下面创建文章:
1 | hexo new post --path "[目录名]/[文章名]" |
[目录名]
不存在会自动创建
generate
1 | hexo g |
server
1 | hexo s //本地测试 |
可以边开启服务器,边修改文章,边看效果(支持热部署)
deploy
1 | hexo d // 部署静态页面 |
一般流程
1 | (hexo clean)--> hexo new --> 写文章 --> hexo g(hexo g -d) --> (hexo s) --> hexo d |
hexo d
,远端没更新,一般都是github
服务器问题,等!