Skip to content

Commit

Permalink
don't use flag -f in "hugo new post"
Browse files Browse the repository at this point in the history
This adresses issue dencold#33
  • Loading branch information
Kaligule authored Jan 4, 2018
1 parent 9dca933 commit e97f368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ At this point, you could spin up Hugo's server and take a look at the site on yo
We'll use another Hugo helper command to create a file that represents a new post on your site:

```bash
$ hugo new post/welcome.md -f yaml
$ hugo new post/welcome.md
```

That command creates a new file located at `content/post/welcome.md`. Also, a quick note on the `-f yaml` option I have been using. Hugo defaults to [toml](https://github.com/toml-lang/toml) for metadata, which I'm not a fan of. I prefer to use [yaml](http://yaml.org) as my format for these settings.
Expand Down

0 comments on commit e97f368

Please sign in to comment.