mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
d2ec1a06df
76e881257 Improve .Scratch entry (#454) 37ed09702 Remove zero-byte .gitmodules file altogether 943f21619 Add a note about valid values for taxonomies in front-matter ebcfa30d7 Update definition list formatting 46050042a Corrected formatting 87c539101 Updated readFile documentation 8fd130395 commands: Regenerate the CLI docs 6ce0ce8d6 data: Regenereate the docshelper 9fe78fabd Release 0.39 33039c6ba releaser: Prepare repository for 0.40-DEV e3a780907 releaser: Add release notes to /docs for release of 0.39 54406e3fa releaser: Bump versions for release of 0.39 21017660b Merge commit '047c4188dfc854f658d16f1e4a9501f9c97a31c7' git-subtree-dir: docs git-subtree-split: 76e88125760c140541edab2061aed31c6db2d800
51 lines
1.3 KiB
Markdown
51 lines
1.3 KiB
Markdown
---
|
|
date: 2018-04-16
|
|
title: "hugo new"
|
|
slug: hugo_new
|
|
url: /commands/hugo_new/
|
|
---
|
|
## hugo new
|
|
|
|
Create new content for your site
|
|
|
|
### Synopsis
|
|
|
|
Create a new content file and automatically set the date and title.
|
|
It will guess which kind of file to create based on the path provided.
|
|
|
|
You can also specify the kind with `-k KIND`.
|
|
|
|
If archetypes are provided in your theme or site, they will be used.
|
|
|
|
```
|
|
hugo new [path] [flags]
|
|
```
|
|
|
|
### Options
|
|
|
|
```
|
|
--editor string edit new content with this editor, if provided
|
|
-h, --help help for new
|
|
-k, --kind string content type to create
|
|
-s, --source string filesystem path to read files relative from
|
|
```
|
|
|
|
### Options inherited from parent commands
|
|
|
|
```
|
|
--config string config file (default is path/config.yaml|json|toml)
|
|
--debug debug output
|
|
--log enable Logging
|
|
--logFile string log File path (if set, logging enabled automatically)
|
|
--quiet build in quiet mode
|
|
-v, --verbose verbose output
|
|
--verboseLog verbose logging
|
|
```
|
|
|
|
### SEE ALSO
|
|
|
|
* [hugo](/commands/hugo/) - hugo builds your site
|
|
* [hugo new site](/commands/hugo_new_site/) - Create a new site (skeleton)
|
|
* [hugo new theme](/commands/hugo_new_theme/) - Create a new theme
|
|
|
|
###### Auto generated by spf13/cobra on 16-Apr-2018
|