Merge branch 'tempv0.124.0'

This commit is contained in:
Bjørn Erik Pedersen 2024-03-16 17:17:24 +01:00
commit 9fcd40fb5e
No known key found for this signature in database
13 changed files with 154 additions and 102 deletions

View File

@ -56,6 +56,7 @@ hugo [flags]
--printPathWarnings print warnings on duplicate target paths etc. --printPathWarnings print warnings on duplicate target paths etc.
--printUnusedTemplates print warnings on unused templates. --printUnusedTemplates print warnings on unused templates.
--quiet build in quiet mode --quiet build in quiet mode
--renderSegments strings named segments to render (configured in the segments config)
--renderToMemory render to memory (mostly useful when running the server) --renderToMemory render to memory (mostly useful when running the server)
-s, --source string filesystem path to read files relative from -s, --source string filesystem path to read files relative from
--templateMetrics display metrics about template executions --templateMetrics display metrics about template executions

View File

@ -24,6 +24,7 @@ hugo config [command] [flags]
--format string preferred file format (toml, yaml or json) (default "toml") --format string preferred file format (toml, yaml or json) (default "toml")
-h, --help help for config -h, --help help for config
--lang string the language to display config for. Defaults to the first language defined. --lang string the language to display config for. Defaults to the first language defined.
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -18,6 +18,7 @@ hugo config mounts [flags] [args]
--cacheDir string filesystem path to cache directory --cacheDir string filesystem path to cache directory
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for mounts -h, --help help for mounts
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -24,6 +24,7 @@ hugo mod clean [flags] [args]
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for clean -h, --help help for clean
--pattern string pattern matching module paths to clean (all if not set), e.g. "**hugo*" --pattern string pattern matching module paths to clean (all if not set), e.g. "**hugo*"
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -25,6 +25,7 @@ hugo mod graph [flags] [args]
--clean delete module cache for dependencies that fail verification --clean delete module cache for dependencies that fail verification
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for graph -h, --help help for graph
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -29,6 +29,7 @@ hugo mod init [flags] [args]
--cacheDir string filesystem path to cache directory --cacheDir string filesystem path to cache directory
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for init -h, --help help for init
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -32,6 +32,7 @@ hugo mod npm pack [flags] [args]
--cacheDir string filesystem path to cache directory --cacheDir string filesystem path to cache directory
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for pack -h, --help help for pack
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -18,6 +18,7 @@ hugo mod tidy [flags] [args]
--cacheDir string filesystem path to cache directory --cacheDir string filesystem path to cache directory
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for tidy -h, --help help for tidy
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -24,6 +24,7 @@ hugo mod vendor [flags] [args]
--cacheDir string filesystem path to cache directory --cacheDir string filesystem path to cache directory
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for vendor -h, --help help for vendor
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -23,6 +23,7 @@ hugo mod verify [flags] [args]
--clean delete module cache for dependencies that fail verification --clean delete module cache for dependencies that fail verification
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
-h, --help help for verify -h, --help help for verify
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -32,6 +32,7 @@ hugo new content [path] [flags]
-f, --force overwrite file if it already exists -f, --force overwrite file if it already exists
-h, --help help for content -h, --help help for content
-k, --kind string content type to create -k, --kind string content type to create
--renderSegments strings named segments to render (configured in the segments config)
-t, --theme strings themes to use (located in /themes/THEMENAME/) -t, --theme strings themes to use (located in /themes/THEMENAME/)
``` ```

View File

@ -62,6 +62,7 @@ hugo server [command] [flags]
--printMemoryUsage print memory usage to screen at intervals --printMemoryUsage print memory usage to screen at intervals
--printPathWarnings print warnings on duplicate target paths etc. --printPathWarnings print warnings on duplicate target paths etc.
--printUnusedTemplates print warnings on unused templates. --printUnusedTemplates print warnings on unused templates.
--renderSegments strings named segments to render (configured in the segments config)
--renderStaticToDisk serve static files from disk and dynamic files from memory --renderStaticToDisk serve static files from disk and dynamic files from memory
--templateMetrics display metrics about template executions --templateMetrics display metrics about template executions
--templateMetricsHints calculate some improvement hints when combined with --templateMetrics --templateMetricsHints calculate some improvement hints when combined with --templateMetrics

View File

@ -207,6 +207,10 @@ chroma:
- Aliases: - Aliases:
- dax - dax
Name: Dax Name: Dax
- Aliases:
- desktop
- desktop_entry
Name: Desktop file
- Aliases: - Aliases:
- diff - diff
- udiff - udiff
@ -443,6 +447,10 @@ chroma:
- Aliases: - Aliases:
- mason - mason
Name: Mason Name: Mason
- Aliases:
- materialize
- mzsql
Name: Materialize SQL dialect
- Aliases: - Aliases:
- mathematica - mathematica
- mma - mma
@ -493,6 +501,9 @@ chroma:
- Aliases: - Aliases:
- natural - natural
Name: Natural Name: Natural
- Aliases:
- ndisasm
Name: NDISASM
- Aliases: - Aliases:
- newspeak - newspeak
Name: Newspeak Name: Newspeak
@ -607,6 +618,9 @@ chroma:
- Aliases: - Aliases:
- prolog - prolog
Name: Prolog Name: Prolog
- Aliases:
- promela
Name: Promela
- Aliases: - Aliases:
- promql - promql
Name: PromQL Name: PromQL
@ -673,6 +687,9 @@ chroma:
- Aliases: - Aliases:
- registry - registry
Name: reg Name: reg
- Aliases:
- rego
Name: Rego
- Aliases: - Aliases:
- rst - rst
- rest - rest
@ -682,6 +699,9 @@ chroma:
- rexx - rexx
- arexx - arexx
Name: Rexx Name: Rexx
- Aliases:
- spec
Name: RPMSpec
- Aliases: - Aliases:
- rb - rb
- ruby - ruby
@ -946,6 +966,7 @@ config:
dir: :cacheDir/modules dir: :cacheDir/modules
maxAge: -1 maxAge: -1
canonifyURLs: false canonifyURLs: false
capitalizeListTitles: true
cascade: [] cascade: []
cleanDestinationDir: false cleanDestinationDir: false
contentDir: content contentDir: content
@ -1585,6 +1606,7 @@ config:
toLower: false toLower: false
relativeURLs: false relativeURLs: false
removePathAccents: false removePathAccents: false
renderSegments: null
resourceDir: resources resourceDir: resources
sectionPagesMenu: "" sectionPagesMenu: ""
security: security:
@ -1607,6 +1629,7 @@ config:
- (?i)GET|POST - (?i)GET|POST
urls: urls:
- .* - .*
segments: {}
server: server:
headers: null headers: null
redirects: redirects:
@ -1704,6 +1727,8 @@ config_helpers:
_merge: none _merge: none
security: security:
_merge: none _merge: none
segments:
_merge: none
server: server:
_merge: none _merge: none
services: services:
@ -2965,6 +2990,21 @@ tpl:
Args: null Args: null
Description: "" Description: ""
Examples: null Examples: null
IsMultiHost:
Aliases: null
Args: null
Description: ""
Examples: null
IsMultihost:
Aliases: null
Args: null
Description: ""
Examples: null
IsMultilingual:
Aliases: null
Args: null
Description: ""
Examples: null
IsProduction: IsProduction:
Aliases: null Aliases: null
Args: null Args: null