Skip to content

Commit 25e0b37

Browse files
committed
Update docs for v0.141.0
Closes gohugoio#2808
1 parent 4429eee commit 25e0b37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+763
-81
lines changed

content/en/commands/hugo.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ hugo [flags]
7272
* [hugo completion](/commands/hugo_completion/) - Generate the autocompletion script for the specified shell
7373
* [hugo config](/commands/hugo_config/) - Display site configuration
7474
* [hugo convert](/commands/hugo_convert/) - Convert front matter to another format
75-
* [hugo deploy](/commands/hugo_deploy/) - Deploy your site to a cloud provider
7675
* [hugo env](/commands/hugo_env/) - Display version and environment info
7776
* [hugo gen](/commands/hugo_gen/) - Generate documentation and syntax highlighting styles
7877
* [hugo import](/commands/hugo_import/) - Import a site from another system

content/en/commands/hugo_completion.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ See each sub-command's help for details on how to use the generated script.
2929
-e, --environment string build environment
3030
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
3131
--logLevel string log level (debug|info|warn|error)
32+
--noBuildLock don't create .hugo_build.lock file
3233
--quiet build in quiet mode
3334
-M, --renderToMemory render to memory (mostly useful when running the server)
3435
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_completion_bash.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ hugo completion bash
5252
-e, --environment string build environment
5353
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
5454
--logLevel string log level (debug|info|warn|error)
55+
--noBuildLock don't create .hugo_build.lock file
5556
--quiet build in quiet mode
5657
-M, --renderToMemory render to memory (mostly useful when running the server)
5758
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_completion_fish.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ hugo completion fish [flags]
4343
-e, --environment string build environment
4444
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
4545
--logLevel string log level (debug|info|warn|error)
46+
--noBuildLock don't create .hugo_build.lock file
4647
--quiet build in quiet mode
4748
-M, --renderToMemory render to memory (mostly useful when running the server)
4849
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_completion_powershell.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ hugo completion powershell [flags]
4040
-e, --environment string build environment
4141
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
4242
--logLevel string log level (debug|info|warn|error)
43+
--noBuildLock don't create .hugo_build.lock file
4344
--quiet build in quiet mode
4445
-M, --renderToMemory render to memory (mostly useful when running the server)
4546
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_completion_zsh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ hugo completion zsh [flags]
5454
-e, --environment string build environment
5555
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
5656
--logLevel string log level (debug|info|warn|error)
57+
--noBuildLock don't create .hugo_build.lock file
5758
--quiet build in quiet mode
5859
-M, --renderToMemory render to memory (mostly useful when running the server)
5960
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_config.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ hugo config [command] [flags]
2424
--format string preferred file format (toml, yaml or json) (default "toml")
2525
-h, --help help for config
2626
--lang string the language to display config for. Defaults to the first language defined.
27+
--printZero include config options with zero values (e.g. false, 0, "") in the output
2728
--renderSegments strings named segments to render (configured in the segments config)
2829
-t, --theme strings themes to use (located in /themes/THEMENAME/)
2930
```
@@ -38,6 +39,7 @@ hugo config [command] [flags]
3839
-e, --environment string build environment
3940
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
4041
--logLevel string log level (debug|info|warn|error)
42+
--noBuildLock don't create .hugo_build.lock file
4143
--quiet build in quiet mode
4244
-M, --renderToMemory render to memory (mostly useful when running the server)
4345
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_config_mounts.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ hugo config mounts [flags] [args]
3232
-e, --environment string build environment
3333
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
3434
--logLevel string log level (debug|info|warn|error)
35+
--noBuildLock don't create .hugo_build.lock file
3536
--quiet build in quiet mode
3637
-M, --renderToMemory render to memory (mostly useful when running the server)
3738
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_convert.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ See convert's subcommands toJSON, toTOML and toYAML for more information.
3131
-e, --environment string build environment
3232
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
3333
--logLevel string log level (debug|info|warn|error)
34+
--noBuildLock don't create .hugo_build.lock file
3435
--quiet build in quiet mode
3536
-M, --renderToMemory render to memory (mostly useful when running the server)
3637
-s, --source string filesystem path to read files relative from

content/en/commands/hugo_convert_toJSON.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ hugo convert toJSON [flags] [args]
3232
-e, --environment string build environment
3333
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
3434
--logLevel string log level (debug|info|warn|error)
35+
--noBuildLock don't create .hugo_build.lock file
3536
-o, --output string filesystem path to write files to
3637
--quiet build in quiet mode
3738
-M, --renderToMemory render to memory (mostly useful when running the server)

0 commit comments

Comments
 (0)