Skip to content

Commit 6e5c2e6

Browse files
committed
Formatting fixes for #10.
1 parent 317b728 commit 6e5c2e6

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

README.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,30 @@ Install `jekyll-compose` and run `jekyll help`.
2525
Listed in help you will see new commands available to you:
2626

2727
```sh
28-
draft Creates a new draft post with the given NAME
29-
post Creates a new post with the given NAME
30-
publish Moves a draft into the _posts directory and sets the date
28+
draft # Creates a new draft post with the given NAME
29+
post # Creates a new post with the given NAME
30+
publish # Moves a draft into the _posts directory and sets the date
3131
```
3232

3333
Create your new post using:
3434

3535
$ jekyll post "My New Post"
3636

37+
Create your new draft using:
38+
39+
$ jekyll draft "My new draft"
40+
41+
Publish your draft using:
42+
43+
$ jekyll publish _drafts/my-new-draft.md
44+
# or specify a specific date on which to publish it
45+
$ jekyll publish _drafts/my-new-draft.md --date 2014-01-24
46+
3747
## Helpful Note
3848

39-
If after installing the jekyll-compose gem you still do not see the above commands avaiable to you, try including the gem in the jekyll_plugins group of your Gemfile like so:
49+
If after installing the jekyll-compose gem you still do not see the above
50+
commands available to you, try including the gem in the `jekyll_plugins`
51+
group of your `Gemfile` like so:
4052

4153
```ruby
4254
group :jekyll_plugins do
@@ -46,7 +58,7 @@ end
4658

4759
## Contributing
4860

49-
1. Fork it ( http://github.com/<my-github-username>/jekyll-compose/fork )
61+
1. Fork it ( http://github.com/jekyll/jekyll-compose/fork )
5062
2. Create your feature branch (`git checkout -b my-new-feature`)
5163
3. Commit your changes (`git commit -am 'Add some feature'`)
5264
4. Push to the branch (`git push origin my-new-feature`)

0 commit comments

Comments
 (0)