theme-next-docs icon indicating copy to clipboard operation
theme-next-docs copied to clipboard

如何跳过某些文章不进行发布

Open sjf0115 opened this issue 7 years ago • 2 comments
trafficstars

如何跳过某些文章不进行发布?

有些文章可能还没写完,不需要立即发布,希望后面修改完毕后,再发布。怎么实现这样一个功能,可以添加 skip:true 类似标签 跳过这样的博文不进行发布

title: Hexo 搭建静态博客 date: 2017-12-01 18:17:23 skip: true

sjf0115 avatar Jan 29 '18 11:01 sjf0115

https://hexo.io/docs/writing.html

放进draft

cutelittleturtle avatar Jan 30 '18 16:01 cutelittleturtle

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.

xd-git avatar Jan 31 '18 06:01 xd-git