如何跳过某些文章不进行发布
Opened this issue · 2 comments
sjf0115 commented
如何跳过某些文章不进行发布?
有些文章可能还没写完,不需要立即发布,希望后面修改完毕后,再发布。怎么实现这样一个功能,可以添加 skip:true 类似标签 跳过这样的博文不进行发布
title: Hexo 搭建静态博客
date: 2017-12-01 18:17:23
skip: true
cutelittleturtle commented
xd-git commented
use the command hexo new draft [your-post-name]
to create a draft. When you want to publish it, use the following command hexo publish [your-post-name]
or just move the draft to the source/_posts
folder.