Hexo使用草稿 Posted on 2024-08-15 In 编程 , Node.js , Hexo Waline: 建立文章草稿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 目录即可。