Improve formatting of Hugo command descriptions
authorAnthony Fok <foka@debian.org>
Tue, 4 Aug 2015 09:15:12 +0000 (03:15 -0600)
committerAnthony Fok <foka@debian.org>
Tue, 4 Aug 2015 09:19:57 +0000 (03:19 -0600)
Trying to make them look good both in the terminal (`hugo help [command]`)
and in the web browser (http://gohugo.io/commands/).  :-)

31 files changed:
commands/benchmark.go
commands/check.go
commands/convert.go
commands/genautocomplete.go
commands/gendoc.go
commands/hugo.go
commands/list.go
commands/list_config.go
commands/new.go
commands/undraft.go
commands/version.go
docs/content/commands/hugo.md
docs/content/commands/hugo_benchmark.md
docs/content/commands/hugo_check.md
docs/content/commands/hugo_config.md
docs/content/commands/hugo_convert.md
docs/content/commands/hugo_convert_toJSON.md
docs/content/commands/hugo_convert_toTOML.md
docs/content/commands/hugo_convert_toYAML.md
docs/content/commands/hugo_genautocomplete.md
docs/content/commands/hugo_gendoc.md
docs/content/commands/hugo_help.md
docs/content/commands/hugo_list.md
docs/content/commands/hugo_list_drafts.md
docs/content/commands/hugo_list_future.md
docs/content/commands/hugo_new.md
docs/content/commands/hugo_new_site.md
docs/content/commands/hugo_new_theme.md
docs/content/commands/hugo_server.md
docs/content/commands/hugo_undraft.md
docs/content/commands/hugo_version.md

index 1e0cc8d7bae29ee7ca56f60c9fa12a6403fecc96..b76c9e884545bf19d73b6b5eea8a6f7d24db7f3d 100644 (file)
@@ -25,9 +25,9 @@ var benchmarkTimes int
 
 var benchmark = &cobra.Command{
        Use:   "benchmark",
-       Short: "Benchmark hugo by building a site a number of times",
-       Long: `Hugo can build a site many times over and analyze the
-running process creating a benchmark.`,
+       Short: "Benchmark hugo by building a site a number of times.",
+       Long: `Hugo can build a site many times over and analyze the running process
+creating a benchmark.`,
        Run: func(cmd *cobra.Command, args []string) {
                InitializeConfig()
                bench(cmd, args)
index ee5a6d5d8c02eddc70ddf41212ef54868eed61dc..1bb43298a6d43de453cee6f1c88e90c0134d1da3 100644 (file)
@@ -21,8 +21,8 @@ import (
 var check = &cobra.Command{
        Use:   "check",
        Short: "Check content in the source directory",
-       Long: `Hugo will perform some basic analysis on the
-    content provided and will give feedback.`,
+       Long: `Hugo will perform some basic analysis on the content provided
+and will give feedback.`,
        Run: func(cmd *cobra.Command, args []string) {
                InitializeConfig()
                site := hugolib.Site{}
index 6268fb2a2367c3555bd196eb004ffe43f3fab1b9..188ab7a723f246e411d7bbfa4461d03e2020190e 100644 (file)
@@ -32,16 +32,18 @@ var unsafe bool
 
 var convertCmd = &cobra.Command{
        Use:   "convert",
-       Short: "Convert will modify your content to different formats",
-       Long:  `Convert will modify your content to different formats`,
+       Short: "Convert your content to different formats",
+       Long:  `Convert your content (e.g. front matter) to different formats.
+
+See convert's subcommands toJSON, toTOML and toYAML for more information.`,
        Run:   nil,
 }
 
 var toJSONCmd = &cobra.Command{
        Use:   "toJSON",
        Short: "Convert front matter to JSON",
-       Long: `toJSON will convert all front matter in the content
-       directory to use JSON for the front matter`,
+       Long: `toJSON converts all front matter in the content directory
+to use JSON for the front matter.`,
        Run: func(cmd *cobra.Command, args []string) {
                err := convertContents(rune([]byte(parser.JSON_LEAD)[0]))
                if err != nil {
@@ -53,8 +55,8 @@ var toJSONCmd = &cobra.Command{
 var toTOMLCmd = &cobra.Command{
        Use:   "toTOML",
        Short: "Convert front matter to TOML",
-       Long: `toTOML will convert all front matter in the content
-       directory to use TOML for the front matter`,
+       Long: `toTOML converts all front matter in the content directory
+to use TOML for the front matter.`,
        Run: func(cmd *cobra.Command, args []string) {
                err := convertContents(rune([]byte(parser.TOML_LEAD)[0]))
                if err != nil {
@@ -66,8 +68,8 @@ var toTOMLCmd = &cobra.Command{
 var toYAMLCmd = &cobra.Command{
        Use:   "toYAML",
        Short: "Convert front matter to YAML",
-       Long: `toYAML will convert all front matter in the content
-       directory to use YAML for the front matter`,
+       Long: `toYAML converts all front matter in the content directory
+to use YAML for the front matter.`,
        Run: func(cmd *cobra.Command, args []string) {
                err := convertContents(rune([]byte(parser.YAML_LEAD)[0]))
                if err != nil {
index 69e9e6f0fc7b6deeafbd0c032660f11bc4ee7736..d2a8704f3ac186d1e6a043384b57021b0bdea5b3 100644 (file)
@@ -14,19 +14,23 @@ var genautocompleteCmd = &cobra.Command{
        Use:   "genautocomplete",
        Short: "Generate shell autocompletion script for Hugo",
        Long: `Generates a shell autocompletion script for Hugo.
-       
-       NOTE: The current version supports Bash only. This should work for *nix systems with Bash installed.
-       
-       By default the file is written directly to /etc/bash_completion.d for convenience and the command may need superuser rights, e.g:
-       
-       sudo hugo genautocomplete
-       
-       Add --completionfile=/path/to/file flag to set alternative file-path and name.
-       
-       Logout and in again to reload the completion scripts or just source them in directly:
-       
-       . /etc/bash_completion
-       `,
+
+NOTE: The current version supports Bash only.
+      This should work for *nix systems with Bash installed.
+
+By default, the file is written directly to /etc/bash_completion.d
+for convenience, and the command may need superuser rights, e.g.:
+
+       $ sudo hugo genautocomplete
+
+Add ` + "`--completionfile=/path/to/file`" + ` flag to set alternative
+file-path and name.
+
+Logout and in again to reload the completion scripts,
+or just source them in directly:
+
+       $ . /etc/bash_completion`,
+
        Run: func(cmd *cobra.Command, args []string) {
                if autocompleteType != "bash" {
                        jww.FATAL.Fatalln("Only Bash is supported for now")
index b8b07a0b74531c413e4e61d8745b958b5a533b97..34f9c1229f48d7ba184f2743bf14a725d3b16d2e 100644 (file)
@@ -24,11 +24,12 @@ var gendocCmd = &cobra.Command{
        Use:   "gendoc",
        Short: "Generate Markdown documentation for the Hugo CLI.",
        Long: `Generate Markdown documentation for the Hugo CLI.
-       
-       This command is, mostly, used to create up-to-date documentation for gohugo.io.
-       
-       It creates one Markdown file per command with front matter suitable for rendering in Hugo.
-       `,
+
+This command is, mostly, used to create up-to-date documentation
+of Hugo's command-line interface for http://gohugo.io/.
+
+It creates one Markdown file per command with front matter suitable
+for rendering in Hugo.`,
 
        Run: func(cmd *cobra.Command, args []string) {
                if !strings.HasSuffix(gendocdir, helpers.FilePathSeparator) {
index 7caae5d1618f5eb0c64b52c2a6b60d26435cdce6..e1a75a097048caf63c89d84b2b9fd76e542f1a0b 100644 (file)
@@ -43,11 +43,12 @@ import (
 var HugoCmd = &cobra.Command{
        Use:   "hugo",
        Short: "hugo builds your site",
-       Long: `hugo is the main command, used to build your Hugo site. 
-       
-Hugo is a Fast and Flexible Static Site Generator built with love by spf13 and friends in Go.
+       Long: `hugo is the main command, used to build your Hugo site.
 
-Complete documentation is available at http://gohugo.io`,
+Hugo is a Fast and Flexible Static Site Generator
+built with love by spf13 and friends in Go.
+
+Complete documentation is available at http://gohugo.io/.`,
        Run: func(cmd *cobra.Command, args []string) {
                InitializeConfig()
                build()
index d3510420ab4226235aeca9ba327b0f9cf7a0916e..7499080b106497cc781ee58c4202c72d8a72d216 100644 (file)
@@ -30,14 +30,16 @@ func init() {
 var listCmd = &cobra.Command{
        Use:   "list",
        Short: "Listing out various types of content",
-       Long:  `Listing out various types of content. List requires a subcommand, eg. hugo list drafts`,
+       Long:  `Listing out various types of content.
+
+List requires a subcommand, e.g. ` + "`hugo list drafts`.",
        Run:   nil,
 }
 
 var listDraftsCmd = &cobra.Command{
        Use:   "drafts",
        Short: "List all drafts",
-       Long:  `List all of the drafts in your content directory`,
+       Long:  `List all of the drafts in your content directory.`,
        Run: func(cmd *cobra.Command, args []string) {
 
                InitializeConfig()
@@ -62,7 +64,8 @@ var listDraftsCmd = &cobra.Command{
 var listFutureCmd = &cobra.Command{
        Use:   "future",
        Short: "List all posts dated in the future",
-       Long:  `List all of the posts in your content directory who will be posted in the future`,
+       Long:  `List all of the posts in your content directory which will be
+posted in the future.`,
        Run: func(cmd *cobra.Command, args []string) {
 
                InitializeConfig()
index 8dad011cdfd67e2c4014c0af0100759cc8463bd1..c8208f124a72d8b536e17d6d8e2dea3872f0ad67 100644 (file)
@@ -24,7 +24,7 @@ import (
 var config = &cobra.Command{
        Use:   "config",
        Short: "Print the site configuration",
-       Long:  `Print the site configuration, both default and custom settings`,
+       Long:  `Print the site configuration, both default and custom settings.`,
        Run: func(cmd *cobra.Command, args []string) {
                InitializeConfig()
                allSettings := viper.AllSettings()
index 0e9f4d58b04d415599bc58f10c915827d2107819..f22a36f563657cd763900289241912ebe282c119 100644 (file)
@@ -48,9 +48,11 @@ var newCmd = &cobra.Command{
        Short: "Create new content for your site",
        Long: `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.
-`,
+
+You can also specify the kind with ` + "`-k KIND`" + `.
+
+If archetypes are provided in your theme or site, they will be used.`,
+
        Run: NewContent,
 }
 
@@ -59,8 +61,7 @@ var newSiteCmd = &cobra.Command{
        Short: "Create a new site (skeleton)",
        Long: `Create a new site in the provided directory.
 The new site will have the correct structure, but no content or theme yet.
-Use 'hugo new [contentPath]' to create new content.
-       `,
+Use ` + "`hugo new [contentPath]`" + ` to create new content.`,
        Run: NewSite,
 }
 
@@ -70,8 +71,7 @@ var newThemeCmd = &cobra.Command{
        Long: `Create a new theme (skeleton) called [name] in the current directory.
 New theme is a skeleton. Please add content to the touched files. Add your
 name to the copyright line in the license and adjust the theme.toml file
-as you see fit.
-       `,
+as you see fit.`,
        Run: NewTheme,
 }
 
index 4dbdf45c927e6c31b62b406158257ea3a706a80d..f10728d82da41984f4664e25aa6e718570bd60e7 100644 (file)
@@ -26,7 +26,9 @@ import (
 var undraftCmd = &cobra.Command{
        Use:   "undraft path/to/content",
        Short: "Undraft changes the content's draft status from 'True' to 'False'",
-       Long:  `Undraft changes the content's draft status from 'True' to 'False' and updates the date to the current date and time. If the content's draft status is 'False', nothing is done`,
+       Long:  `Undraft changes the content's draft status from 'True' to 'False'
+and updates the date to the current date and time.
+If the content's draft status is 'False', nothing is done.`,
        Run:   Undraft,
 }
 
index 24a900cadeb6ec67c058bfdba6862fd8fdaf0b2a..dd6d91cf30ebdd7d4d3963e8cba9fd7a14acdb17 100644 (file)
@@ -31,7 +31,7 @@ var timeLayout string // the layout for time.Time
 var version = &cobra.Command{
        Use:   "version",
        Short: "Print the version number of Hugo",
-       Long:  `All software has versions. This is Hugo's`,
+       Long:  `All software has versions. This is Hugo's.`,
        Run: func(cmd *cobra.Command, args []string) {
                if hugolib.BuildDate == "" {
                        setBuildDate() // set the build date from executable's mdate
index 9334c5ae47b797ee8cc5c58d305faa84cee75951..daba877a3ced42d8d6269a004a3b166bba84a253 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo"
 slug: hugo
 url: /commands/hugo/
@@ -11,11 +11,12 @@ hugo builds your site
 ### Synopsis
 
 
-hugo is the main command, used to build your Hugo site. 
-       
-Hugo is a Fast and Flexible Static Site Generator built with love by spf13 and friends in Go.
+hugo is the main command, used to build your Hugo site.
 
-Complete documentation is available at http://gohugo.io
+Hugo is a Fast and Flexible Static Site Generator
+built with love by spf13 and friends in Go.
+
+Complete documentation is available at http://gohugo.io/.
 
 ```
 hugo
@@ -25,34 +26,35 @@ hugo
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-  -h, --help=false: help for hugo
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+  -h, --help[=false]: help for hugo
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --noTimes=false: Don't sync modification time of files
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --noTimes[=false]: Don't sync modification time of files
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
-  -w, --watch=false: watch filesystem for changes and recreate as needed
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
+  -w, --watch[=false]: watch filesystem for changes and recreate as needed
 ```
 
 ### SEE ALSO
-* [hugo benchmark](/commands/hugo_benchmark/)   - Benchmark hugo by building a site a number of times
+* [hugo benchmark](/commands/hugo_benchmark/)   - Benchmark hugo by building a site a number of times.
 * [hugo check](/commands/hugo_check/)   - Check content in the source directory
 * [hugo config](/commands/hugo_config/)         - Print the site configuration
-* [hugo convert](/commands/hugo_convert/)       - Convert will modify your content to different formats
+* [hugo convert](/commands/hugo_convert/)       - Convert your content to different formats
 * [hugo genautocomplete](/commands/hugo_genautocomplete/)       - Generate shell autocompletion script for Hugo
 * [hugo gendoc](/commands/hugo_gendoc/)         - Generate Markdown documentation for the Hugo CLI.
 * [hugo help](/commands/hugo_help/)     - Help about any command
@@ -62,4 +64,4 @@ hugo
 * [hugo undraft](/commands/hugo_undraft/)       - Undraft changes the content's draft status from 'True' to 'False'
 * [hugo version](/commands/hugo_version/)       - Print the version number of Hugo
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.802527731 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.032773309 +0000 UTC
index 55d54ed0c1f1fa24245a4c0d3310ba609c330adc..f6722da8fbc1d610dde28fb12227aa86defe6ffa 100644 (file)
@@ -1,18 +1,18 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo benchmark"
 slug: hugo_benchmark
 url: /commands/hugo_benchmark/
 ---
 ## hugo benchmark
 
-Benchmark hugo by building a site a number of times
+Benchmark hugo by building a site a number of times.
 
 ### Synopsis
 
 
-Hugo can build a site many times over and analyze the
-running process creating a benchmark.
+Hugo can build a site many times over and analyze the running process
+creating a benchmark.
 
 ```
 hugo benchmark
@@ -23,7 +23,7 @@ hugo benchmark
 ```
   -n, --count=13: number of times to build the site
       --cpuprofile="": path/filename for the CPU profile file
-  -h, --help=false: help for benchmark
+  -h, --help[=false]: help for benchmark
       --memprofile="": path/filename for the memory profile file
 ```
 
@@ -31,27 +31,28 @@ hugo benchmark
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.80030401 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.029178075 +0000 UTC
index 3900acd545ed8f144195cfd5eb844f6785eac370..9c6638558f838eb6ba58fcd8bfb7d67f5ec759e3 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo check"
 slug: hugo_check
 url: /commands/hugo_check/
@@ -11,8 +11,8 @@ Check content in the source directory
 ### Synopsis
 
 
-Hugo will perform some basic analysis on the
-    content provided and will give feedback.
+Hugo will perform some basic analysis on the content provided
+and will give feedback.
 
 ```
 hugo check
@@ -21,34 +21,35 @@ hugo check
 ### Options
 
 ```
-  -h, --help=false: help for check
+  -h, --help[=false]: help for check
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800150805 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.028981006 +0000 UTC
index 65d3605fcb1e5b872076a1dea3f1919d20682714..de1a8d657365172b1baa2cf4acad210b32684345 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo config"
 slug: hugo_config
 url: /commands/hugo_config/
@@ -11,7 +11,7 @@ Print the site configuration
 ### Synopsis
 
 
-Print the site configuration, both default and custom settings
+Print the site configuration, both default and custom settings.
 
 ```
 hugo config
@@ -20,34 +20,35 @@ hugo config
 ### Options
 
 ```
-  -h, --help=false: help for config
+  -h, --help[=false]: help for config
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800015664 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.028773512 +0000 UTC
index 3f8034de3f4500654e9c98783e1d6970d3d50432..2532ab71b7790d7c69c9ec98dfcd2f0ff006ba0b 100644 (file)
@@ -1,48 +1,51 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo convert"
 slug: hugo_convert
 url: /commands/hugo_convert/
 ---
 ## hugo convert
 
-Convert will modify your content to different formats
+Convert your content to different formats
 
 ### Synopsis
 
 
-Convert will modify your content to different formats
+Convert your content (e.g. front matter) to different formats.
+
+See convert's subcommands toJSON, toTOML and toYAML for more information.
 
 ### Options
 
 ```
-  -h, --help=false: help for convert
+  -h, --help[=false]: help for convert
   -o, --output="": filesystem path to write files to
-      --unsafe=false: enable less safe operations, please backup first
+      --unsafe[=false]: enable less safe operations, please backup first
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
@@ -51,4 +54,4 @@ Convert will modify your content to different formats
 * [hugo convert toTOML](/commands/hugo_convert_totoml/)         - Convert front matter to TOML
 * [hugo convert toYAML](/commands/hugo_convert_toyaml/)         - Convert front matter to YAML
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800919 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.029941981 +0000 UTC
index f1b570140867a3e44e1be153090e0e1fd70f6a95..c3074445c8213e4d42506a2622fdfd5ca50593e1 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo convert toJSON"
 slug: hugo_convert_toJSON
 url: /commands/hugo_convert_tojson/
@@ -11,8 +11,8 @@ Convert front matter to JSON
 ### Synopsis
 
 
-toJSON will convert all front matter in the content
-       directory to use JSON for the front matter
+toJSON converts all front matter in the content directory
+to use JSON for the front matter.
 
 ```
 hugo convert toJSON
@@ -21,36 +21,37 @@ hugo convert toJSON
 ### Options
 
 ```
-  -h, --help=false: help for toJSON
+  -h, --help[=false]: help for toJSON
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
   -o, --output="": filesystem path to write files to
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-      --unsafe=false: enable less safe operations, please backup first
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+      --unsafe[=false]: enable less safe operations, please backup first
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
-* [hugo convert](/commands/hugo_convert/)       - Convert will modify your content to different formats
+* [hugo convert](/commands/hugo_convert/)       - Convert your content to different formats
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800453812 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.029372273 +0000 UTC
index da296a7e262af6b7d6e2c7811d0b42ab2c652f69..072f1ef14815ed66913788410782a069684a1853 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo convert toTOML"
 slug: hugo_convert_toTOML
 url: /commands/hugo_convert_totoml/
@@ -11,8 +11,8 @@ Convert front matter to TOML
 ### Synopsis
 
 
-toTOML will convert all front matter in the content
-       directory to use TOML for the front matter
+toTOML converts all front matter in the content directory
+to use TOML for the front matter.
 
 ```
 hugo convert toTOML
@@ -21,36 +21,37 @@ hugo convert toTOML
 ### Options
 
 ```
-  -h, --help=false: help for toTOML
+  -h, --help[=false]: help for toTOML
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
   -o, --output="": filesystem path to write files to
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-      --unsafe=false: enable less safe operations, please backup first
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+      --unsafe[=false]: enable less safe operations, please backup first
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
-* [hugo convert](/commands/hugo_convert/)       - Convert will modify your content to different formats
+* [hugo convert](/commands/hugo_convert/)       - Convert your content to different formats
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800610431 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.029568477 +0000 UTC
index 666eba5286ee90645d98d385da52bb582a06772b..fc7bb688f97d8d64f30b85d59c9186e333ab74cb 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo convert toYAML"
 slug: hugo_convert_toYAML
 url: /commands/hugo_convert_toyaml/
@@ -11,8 +11,8 @@ Convert front matter to YAML
 ### Synopsis
 
 
-toYAML will convert all front matter in the content
-       directory to use YAML for the front matter
+toYAML converts all front matter in the content directory
+to use YAML for the front matter.
 
 ```
 hugo convert toYAML
@@ -21,36 +21,37 @@ hugo convert toYAML
 ### Options
 
 ```
-  -h, --help=false: help for toYAML
+  -h, --help[=false]: help for toYAML
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
   -o, --output="": filesystem path to write files to
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-      --unsafe=false: enable less safe operations, please backup first
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+      --unsafe[=false]: enable less safe operations, please backup first
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
-* [hugo convert](/commands/hugo_convert/)       - Convert will modify your content to different formats
+* [hugo convert](/commands/hugo_convert/)       - Convert your content to different formats
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.800758702 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.029752904 +0000 UTC
index 51c3ff5c2cdcacaf607f210f5408bfd4127e93c8..d516f3133537857af6cdb4e358147da825faecbf 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo genautocomplete"
 slug: hugo_genautocomplete
 url: /commands/hugo_genautocomplete/
@@ -12,19 +12,22 @@ Generate shell autocompletion script for Hugo
 
 
 Generates a shell autocompletion script for Hugo.
-       
-       NOTE: The current version supports Bash only. This should work for *nix systems with Bash installed.
-       
-       By default the file is written directly to /etc/bash_completion.d for convenience and the command may need superuser rights, e.g:
-       
-       sudo hugo genautocomplete
-       
-       Add --completionfile=/path/to/file flag to set alternative file-path and name.
-       
-       Logout and in again to reload the completion scripts or just source them in directly:
-       
-       . /etc/bash_completion
-       
+
+NOTE: The current version supports Bash only.
+      This should work for *nix systems with Bash installed.
+
+By default, the file is written directly to /etc/bash_completion.d
+for convenience, and the command may need superuser rights, e.g.:
+
+       $ sudo hugo genautocomplete
+
+Add `--completionfile=/path/to/file` flag to set alternative
+file-path and name.
+
+Logout and in again to reload the completion scripts,
+or just source them in directly:
+
+       $ . /etc/bash_completion
 
 ```
 hugo genautocomplete
@@ -34,7 +37,7 @@ hugo genautocomplete
 
 ```
       --completionfile="/etc/bash_completion.d/hugo.sh": Autocompletion file
-  -h, --help=false: help for genautocomplete
+  -h, --help[=false]: help for genautocomplete
       --type="bash": Autocompletion type (currently only bash supported)
 ```
 
@@ -42,27 +45,28 @@ hugo genautocomplete
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.802059052 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.032217938 +0000 UTC
index 41f844ff9dcb6ce4d0a8994a5936151cfeda285f..e962111ab52b4e685c56b2966c8b02697a497277 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo gendoc"
 slug: hugo_gendoc
 url: /commands/hugo_gendoc/
@@ -12,11 +12,12 @@ Generate Markdown documentation for the Hugo CLI.
 
 
 Generate Markdown documentation for the Hugo CLI.
-       
-       This command is, mostly, used to create up-to-date documentation for gohugo.io.
-       
-       It creates one Markdown file per command with front matter suitable for rendering in Hugo.
-       
+
+This command is, mostly, used to create up-to-date documentation
+of Hugo's command-line interface for http://gohugo.io/.
+
+It creates one Markdown file per command with front matter suitable
+for rendering in Hugo.
 
 ```
 hugo gendoc
@@ -26,34 +27,35 @@ hugo gendoc
 
 ```
       --dir="/tmp/hugodoc/": the directory to write the doc.
-  -h, --help=false: help for gendoc
+  -h, --help[=false]: help for gendoc
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.802209793 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.032407873 +0000 UTC
index 9ebca7f57ac89f3b182a65ebd0ca5170586613cc..d9b129bfe5ad77488d958d0799db54b3ee09585c 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo help"
 slug: hugo_help
 url: /commands/hugo_help/
@@ -21,34 +21,35 @@ hugo help [command]
 ### Options
 
 ```
-  -h, --help=false: help for help
+  -h, --help[=false]: help for help
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.802371739 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.032577924 +0000 UTC
index d030e9c4dd87e0d6f08f4b3a41b77637348e644d..7fe96f884fcbadfe2aebd5b2a68efb694b9008d9 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo list"
 slug: hugo_list
 url: /commands/hugo_list/
@@ -11,36 +11,39 @@ Listing out various types of content
 ### Synopsis
 
 
-Listing out various types of content. List requires a subcommand, eg. hugo list drafts
+Listing out various types of content.
+
+List requires a subcommand, e.g. `hugo list drafts`.
 
 ### Options
 
 ```
-  -h, --help=false: help for list
+  -h, --help[=false]: help for list
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
@@ -48,4 +51,4 @@ Listing out various types of content. List requires a subcommand, eg. hugo list
 * [hugo list drafts](/commands/hugo_list_drafts/)       - List all drafts
 * [hugo list future](/commands/hugo_list_future/)       - List all posts dated in the future
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.801756747 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.031129252 +0000 UTC
index f6ad11a42379982631248d05b4160189e59b93a8..8def2e6fee6f831d60bc4756e1cb5d83608a5433 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo list drafts"
 slug: hugo_list_drafts
 url: /commands/hugo_list_drafts/
@@ -11,7 +11,7 @@ List all drafts
 ### Synopsis
 
 
-List all of the drafts in your content directory
+List all of the drafts in your content directory.
 
 ```
 hugo list drafts
@@ -20,34 +20,35 @@ hugo list drafts
 ### Options
 
 ```
-  -h, --help=false: help for drafts
+  -h, --help[=false]: help for drafts
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo list](/commands/hugo_list/)     - Listing out various types of content
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.801489239 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.030650499 +0000 UTC
index c370929dbc75239b8627e73c35dae75f0e294144..44d1a9e24e9ce0b2c9795eded2ee0462f12ae0fd 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo list future"
 slug: hugo_list_future
 url: /commands/hugo_list_future/
@@ -11,7 +11,8 @@ List all posts dated in the future
 ### Synopsis
 
 
-List all of the posts in your content directory who will be posted in the future
+List all of the posts in your content directory which will be
+posted in the future.
 
 ```
 hugo list future
@@ -20,34 +21,35 @@ hugo list future
 ### Options
 
 ```
-  -h, --help=false: help for future
+  -h, --help[=false]: help for future
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo list](/commands/hugo_list/)     - Listing out various types of content
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.801618973 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.030877499 +0000 UTC
index 711ce8e8d3b50782e0d8e1800e53ab17fc82f06c..781b235cf07087bd873394f8e103e798d781ef7b 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo new"
 slug: hugo_new
 url: /commands/hugo_new/
@@ -13,9 +13,10 @@ Create new content for your site
 
 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.
 
+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]
@@ -25,7 +26,7 @@ hugo new [path]
 
 ```
   -f, --format="toml": frontmatter format
-  -h, --help=false: help for new
+  -h, --help[=false]: help for new
   -k, --kind="": Content type to create
 ```
 
@@ -33,24 +34,25 @@ hugo new [path]
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
@@ -58,4 +60,4 @@ hugo new [path]
 * [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 at 2015-05-21 18:03:19.80134962 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.030477738 +0000 UTC
index 4425e310e9c838e301069452d26a002066b50523..fbbb4e0f49e6d2550be40c6998417bbe958825eb 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo new site"
 slug: hugo_new_site
 url: /commands/hugo_new_site/
@@ -13,8 +13,7 @@ Create a new site (skeleton)
 
 Create a new site in the provided directory.
 The new site will have the correct structure, but no content or theme yet.
-Use 'hugo new [contentPath]' to create new content.
-       
+Use `hugo new [contentPath]` to create new content.
 
 ```
 hugo new site [path]
@@ -24,34 +23,35 @@ hugo new site [path]
 
 ```
   -f, --format="toml": config & frontmatter format
-  -h, --help=false: help for site
+  -h, --help[=false]: help for site
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo new](/commands/hugo_new/)       - Create new content for your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.80106191 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.030129171 +0000 UTC
index 05b2df32bed34f5638b4922e817de04dab26c0cf..04bd7c4a6eeb43cbb03f06ef97172d98a4bb27a1 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo new theme"
 slug: hugo_new_theme
 url: /commands/hugo_new_theme/
@@ -15,7 +15,6 @@ Create a new theme (skeleton) called [name] in the current directory.
 New theme is a skeleton. Please add content to the touched files. Add your
 name to the copyright line in the license and adjust the theme.toml file
 as you see fit.
-       
 
 ```
 hugo new theme [name]
@@ -24,34 +23,35 @@ hugo new theme [name]
 ### Options
 
 ```
-  -h, --help=false: help for theme
+  -h, --help[=false]: help for theme
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo new](/commands/hugo_new/)       - Create new content for your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.801202688 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.030301827 +0000 UTC
index 89d0c7c6f268c2fa26e6f56fae286c37996d4968..c61487ffb9313516d42be1af391b832d4c988bf4 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo server"
 slug: hugo_server
 url: /commands/hugo_server/
@@ -22,41 +22,42 @@ hugo server
 ### Options
 
 ```
-      --appendPort=true: append port to baseurl
+      --appendPort[=true]: append port to baseurl
       --bind="127.0.0.1": interface to which the server will bind
-      --disableLiveReload=false: watch without enabling live browser reload on rebuild
-  -h, --help=false: help for server
+      --disableLiveReload[=false]: watch without enabling live browser reload on rebuild
+  -h, --help[=false]: help for server
       --meminterval=100: interval to poll memory usage (requires --memstats)
       --memstats="": log memory usage to this file
   -p, --port=1313: port on which the server will listen
-  -w, --watch=false: watch filesystem for changes and recreate as needed
+  -w, --watch[=false]: watch filesystem for changes and recreate as needed
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.799665309 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.028196949 +0000 UTC
index e6c0ca96afdaa1554765f33eae2cc1b01aac82f9..ee460473dff07ca37cf1f0b7fffcda16a2f00efd 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo undraft"
 slug: hugo_undraft
 url: /commands/hugo_undraft/
@@ -11,7 +11,9 @@ Undraft changes the content's draft status from 'True' to 'False'
 ### Synopsis
 
 
-Undraft changes the content's draft status from 'True' to 'False' and updates the date to the current date and time. If the content's draft status is 'False', nothing is done
+Undraft changes the content's draft status from 'True' to 'False'
+and updates the date to the current date and time.
+If the content's draft status is 'False', nothing is done.
 
 ```
 hugo undraft path/to/content
@@ -20,34 +22,35 @@ hugo undraft path/to/content
 ### Options
 
 ```
-  -h, --help=false: help for undraft
+  -h, --help[=false]: help for undraft
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.801883978 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.031353807 +0000 UTC
index c4f5045522a58cabaf1e9a1b952ce730ec8ae940..8eafdeaf44b2de313cb8a7a86fe9f1344a568497 100644 (file)
@@ -1,5 +1,5 @@
 ---
-date: 2015-05-21T20:03:19+02:00
+date: 2015-08-04T03:11:10-06:00
 title: "hugo version"
 slug: hugo_version
 url: /commands/hugo_version/
@@ -11,7 +11,7 @@ Print the version number of Hugo
 ### Synopsis
 
 
-All software has versions. This is Hugo's
+All software has versions. This is Hugo's.
 
 ```
 hugo version
@@ -20,34 +20,35 @@ hugo version
 ### Options
 
 ```
-  -h, --help=false: help for version
+  -h, --help[=false]: help for version
 ```
 
 ### Options inherited from parent commands
 
 ```
   -b, --baseUrl="": hostname (and path) to the root eg. http://spf13.com/
-  -D, --buildDrafts=false: include content marked as draft
-  -F, --buildFuture=false: include content with publishdate in the future
+  -D, --buildDrafts[=false]: include content marked as draft
+  -F, --buildFuture[=false]: include content with publishdate in the future
       --cacheDir="": filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
       --config="": config file (default is path/config.yaml|json|toml)
   -d, --destination="": filesystem path to write files to
-      --disableRSS=false: Do not build RSS files
-      --disableSitemap=false: Do not build Sitemap file
+      --disableRSS[=false]: Do not build RSS files
+      --disableSitemap[=false]: Do not build Sitemap file
       --editor="": edit new content with this editor, if provided
-      --ignoreCache=false: Ignores the cache directory for reading but still writes to it
-      --log=false: Enable Logging
+      --ignoreCache[=false]: Ignores the cache directory for reading but still writes to it
+      --log[=false]: Enable Logging
       --logFile="": Log File path (if set, logging enabled automatically)
-      --pluralizeListTitles=true: Pluralize titles in lists using inflect
+      --pluralizeListTitles[=true]: Pluralize titles in lists using inflect
+      --preserveTaxonomyNames[=false]: Preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
   -s, --source="": filesystem path to read files relative from
-      --stepAnalysis=false: display memory and timing of different steps of the program
+      --stepAnalysis[=false]: display memory and timing of different steps of the program
   -t, --theme="": theme to use (located in /themes/THEMENAME/)
-      --uglyUrls=false: if true, use /filename.html instead of /filename/
-  -v, --verbose=false: verbose output
-      --verboseLog=false: verbose logging
+      --uglyUrls[=false]: if true, use /filename.html instead of /filename/
+  -v, --verbose[=false]: verbose output
+      --verboseLog[=false]: verbose logging
 ```
 
 ### SEE ALSO
 * [hugo](/commands/hugo/)       - hugo builds your site
 
-###### Auto generated by spf13/cobra at 2015-05-21 18:03:19.799870429 +0000 UTC
+###### Auto generated by spf13/cobra at 2015-08-04 09:11:10.028562395 +0000 UTC