From 494f284be3406cc04bb7453271c918c5625bfbca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Tue, 3 Aug 2021 12:17:50 +0200 Subject: [PATCH] docs: Adjust config docs --- docs/config/_default/markup.toml | 4 + docs/content/en/functions/lang.md | 16 +- .../en/getting-started/configuration.md | 364 +++++++++++------- 3 files changed, 229 insertions(+), 155 deletions(-) diff --git a/docs/config/_default/markup.toml b/docs/config/_default/markup.toml index b4a8e059..fb68fae2 100644 --- a/docs/config/_default/markup.toml +++ b/docs/config/_default/markup.toml @@ -25,3 +25,7 @@ style = "trac" lineNumbersInTable = true noClasses = false +[tableOfContents] +endLevel = 2 +ordered = false +startLevel = 2 \ No newline at end of file diff --git a/docs/content/en/functions/lang.md b/docs/content/en/functions/lang.md index 7b810c9b..1a4da807 100644 --- a/docs/content/en/functions/lang.md +++ b/docs/content/en/functions/lang.md @@ -8,23 +8,9 @@ keywords: [numbers] menu: docs: parent: "functions" -toc: false signature: ["lang.NumFmt PRECISION NUMBER [OPTIONS [DELIMITER]]"] aliases: ['/functions/numfmt/'] 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 -``` diff --git a/docs/content/en/getting-started/configuration.md b/docs/content/en/getting-started/configuration.md index b7fc9e63..5c7c79ec 100644 --- a/docs/content/en/getting-started/configuration.md +++ b/docs/content/en/getting-started/configuration.md @@ -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 config file(s). -archetypeDir ("archetypes") -: The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}} +### archetypeDir -assetDir ("assets") -: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}} +**Default value:** "archetypes" -baseURL -: Hostname (and path) to the root, e.g. https://bep.is/ +The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}} -blackfriday -: See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday) +### assetDir -build -: See [Configure Build](#configure-build) +**Default value:** "assets" -buildDrafts (false) -: Include drafts when building. +The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}} -buildExpired (false) -: Include content already expired. +### baseURL +Hostname (and path) to the root, e.g. https://bep.is/ -buildFuture (false) -: Include content with publishdate in the future. +### blackfriday +See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday) -caches -: See [Configure File Caches](#configure-file-caches) +### build +See [Configure Build](#configure-build) -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). +### buildDrafts (false) -canonifyURLs (false) -: Enable to turn relative URLs into absolute. +**Default value:** false -contentDir ("content") -: The directory from where Hugo reads content files. {{% module-mounts-note %}} +Include drafts when building. -dataDir ("data") -: The directory from where Hugo reads data files. {{% module-mounts-note %}} +### buildExpired -defaultContentLanguage ("en") -: Content without language indicator will default to this language. +**Default value:** false -defaultContentLanguageInSubdir (false) -: Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`. +Include content already expired. -disableAliases (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. +### buildFuture -disableHugoGeneratorInject (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. +**Default value:** false -disableKinds ([]) -: Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"term"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`. +Include content with publishdate in the future. -disableLiveReload (false) -: Disable automatic live reloading of browser window. +### caches +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. -enableEmoji (false) -: Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/). +### enableEmoji -enableGitInfo (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. +**Default value:** false -enableInlineShortcodes (false) -: Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes). +Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/). -enableMissingTranslationPlaceholders (false) -: Show a placeholder instead of the default value or an empty string if a translation is missing. +### enableGitInfo -enableRobotsTXT (false) -: Enable generation of `robots.txt` file. +**Default value:** false -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 ("") -: Prefix for footnote anchors. +**Default value:** false -footnoteReturnLinkContents ("") -: Text to display for footnote return links. +Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes). -googleAnalytics ("") -: Google Analytics tracking ID. +### enableMissingTranslationPlaceholders -hasCJKLanguage (false) -: If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages. +**Default value:** false -imaging -: See [Image Processing Config](/content-management/image-processing/#image-processing-config). +Show a placeholder instead of the default value or an empty string if a translation is missing. -languages -: See [Configure Languages](/content-management/multilingual/#configure-languages). +### enableRobotsTXT -languageCode ("") -: 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). +**Default value:** false -languageName ("") -: The site's language name. +Enable generation of `robots.txt` file. -disableLanguages -: See [Disable a Language](/content-management/multilingual/#disable-a-language) +### frontmatter -layoutDir ("layouts") -: The directory from where Hugo reads layouts (templates). +See [Front matter Configuration](#configure-front-matter). -log (false) -: Enable logging. +### footnoteAnchorPrefix -logFile ("") -: Log File path (if set, logging enabled automatically). +**Default value:** "" -markup -: See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}} +Prefix for footnote anchors. -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). -menu -: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu). +### menus +See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu). -minify -: See [Configure Minify](#configure-minify) +### minify +See [Configure Minify](#configure-minify) -module -: Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}} +### module +Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}} -newContentEditor ("") -: The editor to use when creating new content. +### newContentEditor +The editor to use when creating new content. -noChmod (false) -: Don't sync permission mode of files. +### noChmod +Don't sync permission mode of files. -noTimes (false) -: Don't sync modification time of files. +### noTimes +Don't sync modification time of files. -outputFormats +### outputFormats See [Configure Output Formats](#configure-additional-output-formats). -paginate (10) -: Default number of elements per page in [pagination](/templates/pagination/). +### paginate -paginatePath ("page") -: The path element used during pagination (https://example.com/page/2). +**Default value:** 10 -permalinks -: See [Content Management](/content-management/urls/#permalinks). +Default number of elements per page in [pagination](/templates/pagination/). -pluralizeListTitles (true) -: Pluralize titles in lists. +### paginatePath -publishDir ("public") -: The directory to where Hugo will write the final static site (the HTML files etc.). +**Default value:** "page" -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" >}} -relativeURLs (false) -: Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs. +### relativeURLs +Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs. -refLinksErrorLevel ("ERROR") -: 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`). +### refLinksErrorLevel -refLinksNotFoundURL -: URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is. +**Default value:** "ERROR" -rssLimit (unlimited) -: Maximum number of items in the RSS feed. +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`). -sectionPagesMenu ("") -: See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers). +### refLinksNotFoundURL +URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is. -sitemap -: Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml). +### rssLimit -staticDir ("static") -: A directory or a list of directories from where Hugo reads [static files][static-files]. {{% module-mounts-note %}} +Maximum number of items in the RSS feed. -summaryLength (70) -: The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting). +### sectionPagesMenu +See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers). -taxonomies -: See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies). +### sitemap +Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml). -theme ("") -: Theme to use (located by default in `/themes/THEMENAME/`). +### summaryLength -themesDir ("themes") -: The directory where Hugo reads the themes from. +**Default value:** 70 -timeout (10000) -: Timeout for generating page contents, in milliseconds (defaults to 10 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. +The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting). -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). +### taxonomies +See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies). -title ("") -: Site title. +### theme +: See [Module Config](/hugo-modules/configuration/#module-config-imports) for how to import a theme. -titleCaseStyle ("AP") -: See [Configure Title Case](#configure-title-case) +### themesDir -uglyURLs (false) -: When enabled, creates URL of the form `/filename.html` instead of `/filename/`. +**Default value:** "themes" -verbose (false) -: Enable verbose output. +The directory where Hugo reads the themes from. -verboseLog (false) -: Enable verbose logging. +### timeout -watch (false) -: Watch filesystem for changes and recreate as needed. +**Default value:** 10000 + +Timeout for generating page contents, in milliseconds (defaults to 10 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 %}} If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line: