TIL how to work with upcoming posts in Jekyll permalink
jekyll server --unpublished --future --drafts --watch --force_polling -H 0.0.0.0 -P 4000
I learned of a bunch of new options for running my development instance of the Jekyll static site generator. These settings let me start to pre-write posts - which, now that I think about it, might kind of undermine the today in TIL:
--unpublished
will show posts that have a metadata attribute ofpublished: false
--future
will show posts that have a date in the future--drafts
will show posts that are currently in the_drafts/
directory