docs: Adjust config docs

This commit is contained in:
Bjørn Erik Pedersen 2021-08-03 12:17:50 +02:00
parent bf738d2f43
commit 494f284be3
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
3 changed files with 229 additions and 155 deletions

View File

@ -25,3 +25,7 @@ style = "trac"
lineNumbersInTable = true lineNumbersInTable = true
noClasses = false noClasses = false
[tableOfContents]
endLevel = 2
ordered = false
startLevel = 2

View File

@ -8,23 +8,9 @@ keywords: [numbers]
menu: menu:
docs: docs:
parent: "functions" parent: "functions"
toc: false
signature: ["lang.NumFmt PRECISION NUMBER [OPTIONS [DELIMITER]]"] signature: ["lang.NumFmt PRECISION NUMBER [OPTIONS [DELIMITER]]"]
aliases: ['/functions/numfmt/'] aliases: ['/functions/numfmt/']
type: 'template-func' type: 'template-func'
--- ---
The default options value is `- . ,`. The default delimiter within the options
value is a space. If you need to use a space as one of the options, set a
custom delimiter.s
Numbers greater than or equal to 5 are rounded up. For example, if precision is set to `0`, `1.5` becomes `2`, and `1.4` becomes `1`.
```
{{ lang.NumFmt 2 12345.6789 }} → 12,345.68
{{ lang.NumFmt 2 12345.6789 "- , ." }} → 12.345,68
{{ lang.NumFmt 0 -12345.6789 "- . ," }} → -12,346
{{ lang.NumFmt 6 -12345.6789 "- ." }} → -12345.678900
{{ lang.NumFmt 6 -12345.6789 "-|.| " "|" }} → -1 2345.678900
{{ -98765.4321 | lang.NumFmt 2 }} → -98,765.43
```

View File

@ -106,222 +106,306 @@ The following is the full list of Hugo-defined variables with their default
value in parentheses. Users may choose to override those values in their site value in parentheses. Users may choose to override those values in their site
config file(s). config file(s).
archetypeDir ("archetypes") ### archetypeDir
: The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}}
assetDir ("assets") **Default value:** "archetypes"
: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}}
baseURL The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}}
: Hostname (and path) to the root, e.g. https://bep.is/
blackfriday ### assetDir
: See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday)
build **Default value:** "assets"
: See [Configure Build](#configure-build)
buildDrafts (false) The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}}
: Include drafts when building.
buildExpired (false) ### baseURL
: Include content already expired. Hostname (and path) to the root, e.g. https://bep.is/
buildFuture (false) ### blackfriday
: Include content with publishdate in the future. See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday)
caches ### build
: See [Configure File Caches](#configure-file-caches) See [Configure Build](#configure-build)
cascade {{< new-in "0.86.0" >}} ### buildDrafts (false)
: Pass down down default configuration values (front matter) to pages in the content tree. The options in site config is the same as in page front matter, see [Front Matter Cascade](/content-management/front-matter#front-matter-cascade).
canonifyURLs (false) **Default value:** false
: Enable to turn relative URLs into absolute.
contentDir ("content") Include drafts when building.
: The directory from where Hugo reads content files. {{% module-mounts-note %}}
dataDir ("data") ### buildExpired
: The directory from where Hugo reads data files. {{% module-mounts-note %}}
defaultContentLanguage ("en") **Default value:** false
: Content without language indicator will default to this language.
defaultContentLanguageInSubdir (false) Include content already expired.
: Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
disableAliases (false) ### buildFuture
: Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htaccess`, a Netlify `_redirects` file or similar using a custom output format.
disableHugoGeneratorInject (false) **Default value:** false
: Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
disableKinds ([]) Include content with publishdate in the future.
: Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"term"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
disableLiveReload (false) ### caches
: Disable automatic live reloading of browser window. See [Configure File Caches](#configure-file-caches)
### cascade
{{< new-in "0.86.0" >}}
Pass down down default configuration values (front matter) to pages in the content tree. The options in site config is the same as in page front matter, see [Front Matter Cascade](/content-management/front-matter#front-matter-cascade).
### canonifyURLs
**Default value:** false
Enable to turn relative URLs into absolute.
### contentDir
**Default value:** "content"
The directory from where Hugo reads content files. {{% module-mounts-note %}}
### dataDir
**Default value:** "data"
The directory from where Hugo reads data files. {{% module-mounts-note %}}
### defaultContentLanguage
**Default value:** "en"
Content without language indicator will default to this language.
### defaultContentLanguageInSubdir
**Default value:** false
Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
### disableAliases
**Default value:** false
Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htaccess`, a Netlify `_redirects` file or similar using a custom output format.
### disableHugoGeneratorInject
**Default value:** false
Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
### disableKinds
**Default value:** []
Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"term"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
### disableLiveReload
**Default value:** false
Disable automatic live reloading of browser window.
### disablePathToLower
**Default value:** false
disablePathToLower (false)
: Do not convert the url/path to lowercase. : Do not convert the url/path to lowercase.
enableEmoji (false) ### enableEmoji
: Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
enableGitInfo (false) **Default value:** false
: Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
enableInlineShortcodes (false) Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
: Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes).
enableMissingTranslationPlaceholders (false) ### enableGitInfo
: Show a placeholder instead of the default value or an empty string if a translation is missing.
enableRobotsTXT (false) **Default value:** false
: Enable generation of `robots.txt` file.
frontmatter Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
: See [Front matter Configuration](#configure-front-matter). ### enableInlineShortcodes
footnoteAnchorPrefix ("") **Default value:** false
: Prefix for footnote anchors.
footnoteReturnLinkContents ("") Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes).
: Text to display for footnote return links.
googleAnalytics ("") ### enableMissingTranslationPlaceholders
: Google Analytics tracking ID.
hasCJKLanguage (false) **Default value:** false
: If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
imaging Show a placeholder instead of the default value or an empty string if a translation is missing.
: See [Image Processing Config](/content-management/image-processing/#image-processing-config).
languages ### enableRobotsTXT
: See [Configure Languages](/content-management/multilingual/#configure-languages).
languageCode ("") **Default value:** false
: The site's language code. It is used in the default [RSS template](/templates/rss/#configure-rss) and can be useful for [multi-lingual sites](/content-management/multilingual/#configure-multilingual-multihost).
languageName ("") Enable generation of `robots.txt` file.
: The site's language name.
disableLanguages ### frontmatter
: See [Disable a Language](/content-management/multilingual/#disable-a-language)
layoutDir ("layouts") See [Front matter Configuration](#configure-front-matter).
: The directory from where Hugo reads layouts (templates).
log (false) ### footnoteAnchorPrefix
: Enable logging.
logFile ("") **Default value:** ""
: Log File path (if set, logging enabled automatically).
markup Prefix for footnote anchors.
: See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}}
mediaTypes ### footnoteReturnLinkContents
**Default value:** ""
Text to display for footnote return links.
### googleAnalytics
**Default value:** ""
Google Analytics tracking ID.
### hasCJKLanguage
**Default value:** false
If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
### imaging
See [Image Processing Config](/content-management/image-processing/#image-processing-config).
### languages
See [Configure Languages](/content-management/multilingual/#configure-languages).
### disableLanguages
See [Disable a Language](/content-management/multilingual/#disable-a-language)
### markup
See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}}
### mediaTypes
See [Configure Media Types](/templates/output-formats/#media-types). See [Configure Media Types](/templates/output-formats/#media-types).
menu ### menus
: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu). See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
minify ### minify
: See [Configure Minify](#configure-minify) See [Configure Minify](#configure-minify)
module ### module
: Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}} Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}}
newContentEditor ("") ### newContentEditor
: The editor to use when creating new content. The editor to use when creating new content.
noChmod (false) ### noChmod
: Don't sync permission mode of files. Don't sync permission mode of files.
noTimes (false) ### noTimes
: Don't sync modification time of files. Don't sync modification time of files.
outputFormats ### outputFormats
See [Configure Output Formats](#configure-additional-output-formats). See [Configure Output Formats](#configure-additional-output-formats).
paginate (10) ### paginate
: Default number of elements per page in [pagination](/templates/pagination/).
paginatePath ("page") **Default value:** 10
: The path element used during pagination (https://example.com/page/2).
permalinks Default number of elements per page in [pagination](/templates/pagination/).
: See [Content Management](/content-management/urls/#permalinks).
pluralizeListTitles (true) ### paginatePath
: Pluralize titles in lists.
publishDir ("public") **Default value:** "page"
: The directory to where Hugo will write the final static site (the HTML files etc.).
related The path element used during pagination (https://example.com/page/2).
### permalinks
See [Content Management](/content-management/urls/#permalinks).
### pluralizeListTitles
**Default value:** true
Pluralize titles in lists.
### publishDir
**Default value:** "public"
The directory to where Hugo will write the final static site (the HTML files etc.).
### related
: See [Related Content](/content-management/related/#configure-related-content).{{< new-in "0.27" >}} : See [Related Content](/content-management/related/#configure-related-content).{{< new-in "0.27" >}}
relativeURLs (false) ### relativeURLs
: Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs. Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
refLinksErrorLevel ("ERROR") ### refLinksErrorLevel
: When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
refLinksNotFoundURL **Default value:** "ERROR"
: URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
rssLimit (unlimited) When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
: Maximum number of items in the RSS feed.
sectionPagesMenu ("") ### refLinksNotFoundURL
: See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers). URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
sitemap ### rssLimit
: Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml).
staticDir ("static") Maximum number of items in the RSS feed.
: A directory or a list of directories from where Hugo reads [static files][static-files]. {{% module-mounts-note %}}
summaryLength (70) ### sectionPagesMenu
: The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting). See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers).
taxonomies ### sitemap
: See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies). Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml).
theme ("") ### summaryLength
: Theme to use (located by default in `/themes/THEMENAME/`).
themesDir ("themes") **Default value:** 70
: The directory where Hugo reads the themes from.
timeout (10000) The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting).
: Timeout for generating page contents, in milliseconds (defaults to 10&nbsp;seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
timeZone {{< new-in "0.87.0" >}} ### taxonomies
: The time zone (or location), e.g. `Europe/Oslo`, used to parse front matter dates without such information and in the [`time` function](/functions/time/). The list of valid values may be system dependent, but should include `UTC`, `Local`, and any location in the [IANA Time Zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies).
title ("") ### theme
: Site title. : See [Module Config](/hugo-modules/configuration/#module-config-imports) for how to import a theme.
titleCaseStyle ("AP") ### themesDir
: See [Configure Title Case](#configure-title-case)
uglyURLs (false) **Default value:** "themes"
: When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
verbose (false) The directory where Hugo reads the themes from.
: Enable verbose output.
verboseLog (false) ### timeout
: Enable verbose logging.
watch (false) **Default value:** 10000
: Watch filesystem for changes and recreate as needed.
Timeout for generating page contents, in milliseconds (defaults to 10&nbsp;seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
### timeZone
{{< new-in "0.87.0" >}}
The time zone (or location), e.g. `Europe/Oslo`, used to parse front matter dates without such information and in the [`time` function](/functions/time/). The list of valid values may be system dependent, but should include `UTC`, `Local`, and any location in the [IANA Time Zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
### title
Site title.
### titleCaseStyle
**Default value:** "AP"
See [Configure Title Case](#configure-title-case)
### uglyURLs
When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
### watch
Watch filesystem for changes and recreate as needed.
{{% note %}} {{% note %}}
If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line: If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line: