Add draft functionality explanation to upgrading docs

This commit is contained in:
Benjamin J. Balter 2013-04-14 13:18:03 -04:00
parent f4c61e59a6
commit 87d3ddc1d9
1 changed files with 15 additions and 0 deletions

View File

@ -45,4 +45,19 @@ to one or more config files.
### Draft posts
Jekyll now lets you write draft posts, and allows you to easily preview how
they will look prior to publishing. To start a draft, simply create a folder
called `_drafts` in your site's root (e.g., along side `_posts`), and add a
new markdown file to it. To generate preview your new post, simply run the
`Jekyll` command with the `--drafts` flag.
<div class="note info">
<h5 mardown="1">Drafts don't have dates</h5>
<p markdown="1">Unlike posts, drafts don't have a date, since they havn't
been published yet. Rather than naming your draft something like
`2013-07-01-my-draft-post.md`, simply name the file what you'd like your
post to eventually be titled, here `my-draft-post.md`.</p>
</div>
### Baseurl