Hexo使用草稿

建立文章草稿

1
$ hexo new draft <title>

或者

1
$ hexo n draft <title>

本机预览草稿

1
$ hexo S --draft

将草稿发布为正式文章

1
$ hexo P <filename>

或者

1
$ hexo p <filename>

其中 <filename> 为不包含 md 后缀的文章名称,包含会出错。它的原理只是将文章从 source/_drafts 移动到 source/_posts 而已。

若日后想将正式文章转为为草稿,只需手动将文章从 source/_posts 目录移动到 source/_drafts 目录即可。