You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/en/configuration/all.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ ignoreCache
123
123
: (`bool`) Whether to ignore the cache directory. Default is `false`.
124
124
125
125
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].
127
127
128
128
ignoreLogs
129
129
: (`[]string`) A slice of message identifiers corresponding to warnings and errors you wish to suppress. See [`erroridf`] and [`warnidf`].
@@ -298,8 +298,8 @@ uglyurls
298
298
299
299
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:
300
300
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`.
303
303
1. In a `hugo_cache_$USER` directory below the OS temp dir.
Copy file name to clipboardexpand all lines: content/en/configuration/build.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ cachebusters
18
18
: See the [cache busters](#cache-busters) section below.
19
19
20
20
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.
22
22
23
23
useResourceCacheWhen
24
24
: (`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
48
48
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.
49
49
50
50
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/...`.
52
52
53
53
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`.
Copy file name to clipboardexpand all lines: content/en/configuration/caches.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ dir
16
16
: (`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.
17
17
18
18
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).
Copy file name to clipboardexpand all lines: content/en/configuration/deployment.md
+2-4
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ matchers
34
34
: (`[]*Matcher`) A slice of [matchers](#matchers-1).
35
35
36
36
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.
38
38
39
39
target
40
40
: (`string`) The target deployment [`name`](#name). Defaults to the first target.
@@ -45,8 +45,6 @@ targets
45
45
workers
46
46
: (`int`) The number of concurrent workers to use when uploading files. Default is `10`.
47
47
48
-
[RE2]: https://github.com/google/re2/wiki/Syntax/
49
-
50
48
## Targets
51
49
52
50
A target represents a deployment target such as "staging" or "production".
@@ -93,7 +91,7 @@ gzip
93
91
: (`bool`) Whether the file should be gzipped before upload. If so, the `ContentEncoding` field will automatically be set to `gzip`. Default is `false`.
94
92
95
93
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.
Copy file name to clipboardexpand all lines: content/en/configuration/imaging.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ resampleFilter = 'box'
20
20
{{< /code-toggle >}}
21
21
22
22
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`.
24
24
25
25
bgColor
26
26
: (`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
55
55
: (`bool`) Whether to disable extraction of the GPS latitude and longitude. Default is `false`.
56
56
57
57
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.
59
59
60
60
includeFields
61
-
: (`string`) A regular expression matching the tags to include when extracting EXIF data. To include all available tags, set this value to `".*"`.
61
+
: (`string`) A [regular expression](g) matching the tags to include when extracting EXIF data. To include all available tags, set this value to `".*"`.
62
62
63
63
> [!note]
64
64
> 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`.
65
65
>
66
66
> To control tag availability, change the `excludeFields` or `includeFields` settings as described above.
Copy file name to clipboardexpand all lines: content/en/configuration/markup.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ duplicateResourceFiles
120
120
: (`bool`) Whether to duplicate shared page resources for each language on multilingual single-host sites. See [multilingual page resources] for details. Default is `false`.
121
121
122
122
> [!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.
124
124
125
125
parser.wrapStandAloneImageWithinParagraph
126
126
: (`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`.
: (`bool`) Whether to enable the [embedded link render hook]. Default is `false`.
160
160
161
161
> [!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.
163
163
164
164
renderer.hardWraps
165
165
: (`bool`) Whether to replace newline characters within a paragraph with `br` elements. Default is `false`.
Copy file name to clipboardexpand all lines: content/en/configuration/output-formats.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ You can create new output formats as needed. For example, you may wish to create
95
95
96
96
### Step 1
97
97
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.
99
99
100
100
{{< code-toggle file=hugo >}}
101
101
[mediaTypes.'application/atom+xml']
@@ -202,7 +202,7 @@ Output format|Template path
202
202
[configure media types]: /configuration/media-types/
203
203
[configure outputs]: /configuration/outputs/
204
204
[configured media types]: /configuration/media-types/
205
-
[default media type]: /configuration/media-types/
205
+
[default media types]: /configuration/media-types/
Copy file name to clipboardexpand all lines: content/en/configuration/security.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -19,19 +19,19 @@ exec.allow
19
19
: (`[]string`) A slice of [regular expressions](g) matching the names of external executables that Hugo is allowed to run.
20
20
21
21
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.
23
23
24
24
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.
26
26
27
27
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.
29
29
30
30
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.
32
32
33
33
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.
35
35
36
36
> [!note]
37
37
> Setting an allow list to the string `none` will completely disable the associated feature.
Copy file name to clipboardexpand all lines: content/en/configuration/server.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ fromHeaders
37
37
38
38
fromRe
39
39
: {{< 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.
41
41
42
42
status
43
43
: (`string`) The HTTP status code to use for the redirect. A status code of 200 will trigger a URL rewrite.
Copy file name to clipboardexpand all lines: content/en/content-management/content-adapters.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ Returns a persistent “scratch pad” to store and manipulate data. The main us
99
99
100
100
### EnableAllLanguages
101
101
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.
Copy file name to clipboardexpand all lines: content/en/functions/collections/Where.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ Use any of the following logical operators:
88
88
89
89
`like`
90
90
: {{< 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.
92
92
93
93
> [!note]
94
94
> The examples below perform comparisons within a page collection, but the same comparisons are applicable to a slice of maps.
Copy file name to clipboardexpand all lines: content/en/methods/menu-entry/Name.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ params:
11
11
12
12
If you define the menu entry [automatically], the `Name` method returns the page's [`LinkTitle`], falling back to its [`Title`].
13
13
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`].
0 commit comments