Skip to content

Commit 92ce95c

Browse files
authored
content: Miscellaneous edits
1 parent f129366 commit 92ce95c

File tree

15 files changed

+68
-43
lines changed

15 files changed

+68
-43
lines changed

‎content/en/configuration/all.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ ignoreCache
123123
: (`bool`) Whether to ignore the cache directory. Default is `false`.
124124

125125
ignoreFiles
126-
: (`[]string]`) A slice of regular expressions used to exclude specific files from a build. These expressions are matched against the absolute file path and apply to files within the `content`, `data`, and `i18n` directories. For more advanced file exclusion options, see the section on [module mounts].
126+
: (`[]string]`) A slice of [regular expressions](g) used to exclude specific files from a build. These expressions are matched against the absolute file path and apply to files within the `content`, `data`, and `i18n` directories. For more advanced file exclusion options, see the section on [module mounts].
127127

128128
ignoreLogs
129129
: (`[]string`) A slice of message identifiers corresponding to warnings and errors you wish to suppress. See [`erroridf`] and [`warnidf`].
@@ -298,8 +298,8 @@ uglyurls
298298

299299
Hugo's file cache directory is configurable via the [`cacheDir`] configuration option or the `HUGO_CACHEDIR` environment variable. If neither is set, Hugo will use, in order of preference:
300300

301-
1. If running on Netlify: `/opt/build/cache/hugo_cache/`. This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other CI vendors, please read their documentation. For an CircleCI example, see [this configuration].
302-
1. In a `hugo_cache` directory below the OS user cache directory as defined by Go's [os.UserCacheDir]. On Unix systems, per the [XDG base directory specification], this is `$XDG_CACHE_HOME` if non-empty, else `$HOME/.cache`. On MacOS, this is `$HOME/Library/Caches`. On Windows, this is`%LocalAppData%`. On Plan 9, this is `$home/lib/cache`.
301+
1. If running on Netlify: `/opt/build/cache/hugo_cache/`. This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other [CI/CD](g) vendors, please read their documentation. For an CircleCI example, see [this configuration].
302+
1. In a `hugo_cache` directory below the OS user cache directory as defined by Go's [os.UserCacheDir] function. On Unix systems, per the [XDG base directory specification], this is `$XDG_CACHE_HOME` if non-empty, else `$HOME/.cache`. On MacOS, this is `$HOME/Library/Caches`. On Windows, this is`%LocalAppData%`. On Plan 9, this is `$home/lib/cache`.
303303
1. In a `hugo_cache_$USER` directory below the OS temp dir.
304304

305305
To determine the current `cacheDir`:

‎content/en/configuration/build.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cachebusters
1818
: See the [cache busters](#cache-busters) section below.
1919

2020
noJSConfigInAssets
21-
: (`bool`) Whether to disable writing a `jsconfig.json` into your `assets` directory with mapping of imports from running [js.Build](/hugo-pipes/js). This file is intended to help with intellisense/navigation inside code editors such as [VS Code](https://code.visualstudio.com/). Note that if you do not use `js.Build`, no file will be written.
21+
: (`bool`) Whether to disable writing a `jsconfig.json` in your `assets` directory with mapping of imports from running [js.Build](/hugo-pipes/js). This file is intended to help with intellisense/navigation inside code editors such as [VS Code](https://code.visualstudio.com/). Note that if you do not use `js.Build`, no file will be written.
2222

2323
useResourceCacheWhen
2424
: (`string`) When to use the resource file cache, one of `never`, `fallback`, or `always`. Applicable when transpiling Sass to CSS. Default is `fallback`.
@@ -48,10 +48,10 @@ The `build.cachebusters` configuration option was added to support development u
4848
When `buildStats` is enabled, Hugo writes a `hugo_stats.json` file on each build with HTML classes etc. that's used in the rendered output. Changes to this file will trigger a rebuild of the `styles.css` file. You also need to add `hugo_stats.json` to Hugo's server watcher. See [Hugo Starter Tailwind Basic](https://github.com/bep/hugo-starter-tailwind-basic) for a running example.
4949

5050
source
51-
: (`string`) A regular expression matching file(s) relative to one of the virtual component directories in Hugo, typically `assets/...`.
51+
: (`string`) A [regular expression](g) matching file(s) relative to one of the virtual component directories in Hugo, typically `assets/...`.
5252

5353
target
54-
: (`string`) A regular expression matching the keys in the resource cache that should be expired when `source` changes. You can use the matching regexp groups from `source` in the expression, e.g. `$1`.
54+
: (`string`) A [regular expression](g) matching the keys in the resource cache that should be expired when `source` changes. You can use the matching regexp groups from `source` in the expression, e.g. `$1`.
5555

5656
## Build stats
5757

‎content/en/configuration/caches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dir
1616
: (`string`) The absolute file system path where the cached files will be stored. You can begin the path with the `:cacheDir` or `:resourceDir` token. These tokens will be replaced with the actual configured cache directory and resource directory paths, respectively.
1717

1818
maxAge
19-
: (`string`) The `duration` a cached entry remains valid before being evicted. A value of `0` disables the cache. A value of `-1` means the cache entry never expires (the default).
19+
: (`string`) The [duration](g) a cached entry remains valid before being evicted. A value of `0` disables the cache. A value of `-1` means the cache entry never expires (the default).
2020

2121
## Tokens
2222

‎content/en/configuration/deployment.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ matchers
3434
: (`[]*Matcher`) A slice of [matchers](#matchers-1).
3535

3636
order
37-
: (`[]string`) An ordered slice of [RE2] regular expressions that determines upload priority (left to right). Files not matching any expression are uploaded last in an arbitrary order.
37+
: (`[]string`) An ordered slice of [regular expressions](g) that determines upload priority (left to right). Files not matching any expression are uploaded last in an arbitrary order.
3838

3939
target
4040
: (`string`) The target deployment [`name`](#name). Defaults to the first target.
@@ -45,8 +45,6 @@ targets
4545
workers
4646
: (`int`) The number of concurrent workers to use when uploading files. Default is `10`.
4747

48-
[RE2]: https://github.com/google/re2/wiki/Syntax/
49-
5048
## Targets
5149

5250
A target represents a deployment target such as "staging" or "production".
@@ -93,7 +91,7 @@ gzip
9391
: (`bool`) Whether the file should be gzipped before upload. If so, the `ContentEncoding` field will automatically be set to `gzip`. Default is `false`.
9492

9593
pattern
96-
: (`string`) An [RE2] regular expression used to match paths. Paths are converted to use forward slashes (`/`) before matching.
94+
: (`string`) A [regular expression](g) used to match paths. Paths are converted to use forward slashes (`/`) before matching.
9795

9896
[cacheControl]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
9997
[contentEncoding]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding

‎content/en/configuration/imaging.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resampleFilter = 'box'
2020
{{< /code-toggle >}}
2121

2222
anchor
23-
: (`string`) When using the Crop or Fill method, the anchor determines the placement of the crop box. One of `TopLeft`, `Top`, `TopRight`, `Left`, `Center`, `Right`, `BottomLeft`, `Bottom`, `BottomRight`, or `Smart`. Default is `Smart`.
23+
: (`string`) When using the [`Crop`] or [`Fill`] method, the anchor determines the placement of the crop box. One of `TopLeft`, `Top`, `TopRight`, `Left`, `Center`, `Right`, `BottomLeft`, `Bottom`, `BottomRight`, or `Smart`. Default is `Smart`.
2424

2525
bgColor
2626
: (`string`) The background color of the resulting image. Applicable when converting from a format that supports transparency to a format that does not support transparency, for example, when converting from PNG to JPEG. Expressed as an RGB [hexadecimal] value. Default is `#ffffff`.
@@ -55,12 +55,15 @@ disableLatLong
5555
: (`bool`) Whether to disable extraction of the GPS latitude and longitude. Default is `false`.
5656

5757
excludeFields
58-
: (`string`) A regular expression matching the tags to exclude when extracting EXIF data.
58+
: (`string`) A [regular expression](g) matching the tags to exclude when extracting EXIF data.
5959

6060
includeFields
61-
: (`string`) A regular expression matching the tags to include when extracting EXIF data. To include all available tags, set this value to&nbsp;`".*"`.
61+
: (`string`) A [regular expression](g) matching the tags to include when extracting EXIF data. To include all available tags, set this value to&nbsp;`".*"`.
6262

6363
> [!note]
6464
> To improve performance and decrease cache size, Hugo excludes the following tags: `ColorSpace`, `Contrast`, `Exif`, `Exposure[M|P|B]`, `Flash`, `GPS`, `JPEG`, `Metering`, `Resolution`, `Saturation`, `Sensing`, `Sharp`, and `WhiteBalance`.
6565
>
6666
> To control tag availability, change the `excludeFields` or `includeFields` settings as described above.
67+
68+
[`Crop`]: /methods/resource/crop/
69+
[`Fill`]: /methods/resource/fill/

‎content/en/configuration/languages.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ disabled
4444
languageCode
4545
: (`string`) The language tag as described in [RFC 5646]. This value does not affect localization or URLs. Hugo uses this value to populate:
4646

47-
- The `lang` attribute of the `html` element in the [built-in alias template]
48-
- The `language` element in the [built-in RSS template]
49-
- The `locale` property in the [built-in OpenGraph template]
47+
- The `lang` attribute of the `html` element in the [embedded alias template]
48+
- The `language` element in the [embedded RSS template]
49+
- The `locale` property in the [embedded OpenGraph template]
5050

5151
Access this value from a template using the [`Language.LanguageCode`] method on a `Site` or `Page` object.
5252

@@ -185,9 +185,9 @@ public
185185
[`Language.LanguageName`]: /methods/site/language/#languagename
186186
[`Language.Weight`]: /methods/site/language/#weight
187187
[`Title`]: /methods/site/title/
188-
[built-in alias template]: {{% eturl alias %}}
189-
[built-in OpenGraph template]: {{% eturl opengraph %}}
190-
[built-in RSS template]: {{% eturl rss %}}
188+
[embedded alias template]: {{% eturl alias %}}
189+
[embedded OpenGraph template]: {{% eturl opengraph %}}
190+
[embedded RSS template]: {{% eturl rss %}}
191191
[RFC 5646]: https://datatracker.ietf.org/doc/html/rfc5646#section-2.1
192192
[RFC 5646 § 2.2.7]: https://datatracker.ietf.org/doc/html/rfc5646#section-2.2.7
193193
[translating by file name]: /content-management/multilingual/#translation-by-file-name

‎content/en/configuration/markup.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ duplicateResourceFiles
120120
: (`bool`) Whether to duplicate shared page resources for each language on multilingual single-host sites. See [multilingual page resources] for details. Default is `false`.
121121

122122
> [!note]
123-
> With multilingual single-host sites, setting this parameter to `false` will enable Hugo's [embedded link render hook] and [embedded image render hook]. This is the default configuration for multilingual single-host sites.
123+
> With multilingual single-host sites, setting this parameter to `false` will enable Hugo's [embedded link render hook] and [embedded image render hook]. This is the default configuration for multilingual single-host sites.
124124
125125
parser.wrapStandAloneImageWithinParagraph
126126
: (`bool`) Whether to wrap image elements without adjacent content within a `p` element when rendered. This is the default Markdown behavior. Set to `false` when using an [image render hook] to render standalone images as `figure` elements. Default is `true`.
@@ -159,7 +159,7 @@ renderHooks.link.enableDefault
159159
: (`bool`) Whether to enable the [embedded link render hook]. Default is `false`.
160160

161161
> [!note]
162-
> The embedded link render hook is automatically enabled for multilingual single-host sites if [duplication of shared page resources] is disabled. This is the default configuration for multilingual single-host sites.
162+
> The embedded link render hook is automatically enabled for multilingual single-host sites if [duplication of shared page resources] is disabled. This is the default configuration for multilingual single-host sites.
163163
164164
renderer.hardWraps
165165
: (`bool`) Whether to replace newline characters within a paragraph with `br` elements. Default is `false`.
@@ -335,3 +335,7 @@ ordered
335335
[security policy]: /configuration/security/
336336
[subscript]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
337337
[superscript]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
338+
[AsciiDoc]: https://asciidoc.org/
339+
[Emacs Org Mode]: https://orgmode.org/
340+
[Pandoc]: https://www.pandoc.org/
341+
[reStructuredText]: https://docutils.sourceforge.io/rst.html

‎content/en/configuration/output-formats.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You can create new output formats as needed. For example, you may wish to create
9595

9696
### Step 1
9797

98-
You must specify a media type when you create an output format. Because `application/atom+xml`, the media type for Atom feeds, is not a [default media type], begin by creating a new one:
98+
Output formats require a specified media type. Because Atom feeds use `application/atom+xml`, which is not one of the [default media types], you must create it first.
9999

100100
{{< code-toggle file=hugo >}}
101101
[mediaTypes.'application/atom+xml']
@@ -202,7 +202,7 @@ Output format|Template path
202202
[configure media types]: /configuration/media-types/
203203
[configure outputs]: /configuration/outputs/
204204
[configured media types]: /configuration/media-types/
205-
[default media type]: /configuration/media-types/
205+
[default media types]: /configuration/media-types/
206206
[embedded RSS template]: {{% eturl rss %}}
207207
[html/template]: https://pkg.go.dev/html/template
208208
[template lookup order]: /templates/lookup-order/

‎content/en/configuration/security.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ exec.allow
1919
: (`[]string`) A slice of [regular expressions](g) matching the names of external executables that Hugo is allowed to run.
2020

2121
exec.osEnv
22-
: (`[]string`) A slice of regular expressions matching the names of operating system environment variables that Hugo is allowed to access.
22+
: (`[]string`) A slice of [regular expression](g) matching the names of operating system environment variables that Hugo is allowed to access.
2323

2424
funcs.getenv
25-
: (`[]string`) A slice of regular expressions matching the names of operating system environment variables that Hugo is allowed to access with the [`os.Getenv`] function.
25+
: (`[]string`) A slice of [regular expression](g) matching the names of operating system environment variables that Hugo is allowed to access with the [`os.Getenv`] function.
2626

2727
http.methods
28-
: (`[]string`) A slice of regular expressions matching the HTTP methods that the [`resources.GetRemote`] function is allowed to use.
28+
: (`[]string`) A slice of [regular expression](g) matching the HTTP methods that the [`resources.GetRemote`] function is allowed to use.
2929

3030
http.mediaTypes
31-
: (`[]string`) Applicable to the `resources.GetRemote` function, a slice of regular expressions matching the `Content-Type` in HTTP responses that Hugo trusts, bypassing file content analysis for media type detection.
31+
: (`[]string`) Applicable to the `resources.GetRemote` function, a slice of [regular expression](g) matching the `Content-Type` in HTTP responses that Hugo trusts, bypassing file content analysis for media type detection.
3232

3333
http.urls
34-
: (`[]string`) A slice of regular expressions matching the URLs that the `resources.GetRemote` function is allowed to access.
34+
: (`[]string`) A slice of [regular expression](g) matching the URLs that the `resources.GetRemote` function is allowed to access.
3535

3636
> [!note]
3737
> Setting an allow list to the string `none` will completely disable the associated feature.

‎content/en/configuration/server.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fromHeaders
3737

3838
fromRe
3939
: {{< new-in 0.144.0 />}}
40-
: (`string`) A regular expression used to match the requested URL. Either `from` or `fromRE` must be set. If both `from` and `fromRe` are specified, the URL must match both patterns. Capture groups from the regular expression are accessible in the `to` field as `$1`, `$2`, and so on.
40+
: (`string`) A [regular expression](g) used to match the requested URL. Either `from` or `fromRE` must be set. If both `from` and `fromRe` are specified, the URL must match both patterns. Capture groups from the regular expression are accessible in the `to` field as `$1`, `$2`, and so on.
4141

4242
status
4343
: (`string`) The HTTP status code to use for the redirect. A status code of 200 will trigger a URL rewrite.

‎content/en/content-management/content-adapters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Returns a persistent “scratch pad” to store and manipulate data. The main us
9999

100100
### EnableAllLanguages
101101

102-
By default, Hugo executes the content adapter for the language defined by the _content.gotmpl file . Use this method to activate the content adapter for all languages.
102+
By default, Hugo executes the content adapter for the language defined by the _content.gotmpl file. Use this method to activate the content adapter for all languages.
103103

104104
```go-html-template {file="content/books/_content.gotmpl"}
105105
{{ .EnableAllLanguages }}

‎content/en/functions/collections/Where.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Use any of the following logical operators:
8888

8989
`like`
9090
: {{< new-in 0.116.0 />}}
91-
: (`bool`) Reports whether the given field value matches the regular expression specified in `VALUE`. Use the `like` operator to compare `string` values. The `like` operator returns `false` when comparing other data types to the regular expression.
91+
: (`bool`) Reports whether the given field value matches the [regular expression](g) specified in `VALUE`. Use the `like` operator to compare `string` values. The `like` operator returns `false` when comparing other data types to the regular expression.
9292

9393
> [!note]
9494
> The examples below perform comparisons within a page collection, but the same comparisons are applicable to a slice of maps.

‎content/en/functions/resources/GetRemote.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ mediaTypes = ['^image/avif$','^application/vnd\.api\+json$']
230230
Note that the entry above is:
231231

232232
- An _addition_ to the allowlist; it does not _replace_ the allowlist
233-
- An array of regular expressions
233+
- An array of [regular expression](g)
234234

235235
[allowlist]: https://en.wikipedia.org/wiki/Whitelist
236236
[Content-Type]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type

‎content/en/methods/menu-entry/Name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ params:
1111

1212
If you define the menu entry [automatically], the `Name` method returns the page's [`LinkTitle`], falling back to its [`Title`].
1313

14-
If you define the menu entry [in front matter] or [in site configuration], the `Name` method returns the `name` property of the given menu entry. If the `name` is not defined, and the menu entry resolves to a page, the `Name` returns the page [`LinkTitle`], falling back to its [`Title`].
14+
If you define the menu entry [in front matter] or [in site configuration], the `Name` method returns the `name` property of the given menu entry. If the `name` is not defined, and the menu entry resolves to a page, the `Name` returns the page [`LinkTitle`], falling back to its [`Title`].
1515

1616
[`LinkTitle`]: /methods/page/linktitle/
1717
[`Title`]: /methods/page/title/

‎layouts/shortcodes/root-configuration-keys.html

+29-9
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,40 @@
55
@example {{< root-configuration-keys >}}
66
*/ -}}
77
{{/* prettier-ignore-end */ -}}
8-
{{- $keys := slice }}
9-
{{- range $k, $_ := site.Data.docs.config }}
8+
{{- /* Create scratch map of key:filename. */}}
9+
{{- $s := newScratch }}
10+
{{- range $k, $v := site.Data.docs.config }}
1011
{{- if or (reflect.IsMap .) (reflect.IsSlice .) }}
11-
{{- $keys = $keys | append $k }}
12+
{{- $s.Set $k ($k | humanize | anchorize) }}
1213
{{- end }}
1314
{{- end }}
14-
{{- $keys = $keys | append "uglyURLs" }}
15-
{{- $keys = $keys | complement (slice "author" "ignoreFiles" "staticDir") }}
16-
{{- $keys = apply $keys "strings.ToLower" "." | sort }}
15+
16+
{{/* Deprecated. */}}
17+
{{- $s.Delete "author" }}
18+
19+
{{/* Use mounts instead. */}}
20+
{{- $s.Delete "staticDir" }}
21+
{{- $s.Delete "ignoreFiles" }}
22+
23+
{{/* This key is "HTTPCache" not "httpCache". */}}
24+
{{- $s.Set "HTTPCache" "http-cache" }}
25+
26+
{{/* This key is "frontmatter" not "frontMatter" */}}
27+
{{- $s.Set "frontmatter" "front-matter" }}
28+
29+
{{/* The page title is "Related content" not "related". */}}
30+
{{- $s.Set "related" "related-content" }}
31+
32+
{{/* It can be configured as bool or map; we want to show map. */}}
33+
{{- $s.Set "uglyURLs" "ugly-urls" }}
1734

1835
{{- $links := slice }}
19-
{{- range $key := $keys }}
20-
{{- with site.GetPage (printf "/configuration/%s" .) }}
21-
{{- $links = $links | append (printf "<a href=%q><code>%s</code></a>" .RelPermalink $key) }}
36+
{{- range $k, $v := $s.Values }}
37+
{{- $path := printf "/configuration/%s" $v }}
38+
{{- with site.GetPage $path }}
39+
{{- $links = $links | append (printf "<a href=%q><code>%s</code></a>" .RelPermalink $k) }}
40+
{{- else }}
41+
{{- errorf "The %q shortcode was unable to find the page %s. See %s." $.Name $path $.Position }}
2242
{{- end }}
2343
{{- end }}
2444

0 commit comments

Comments
 (0)