From d1874c5f5904e64ae85791c2acce7e6274437ed8 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Sat, 25 Jan 2025 17:23:42 -0800 Subject: [PATCH] Consistently use "edition" when referring to standard, extended, etc. --- content/en/contribute/development.md | 2 +- content/en/functions/css/Sass.md | 2 +- content/en/functions/hugo/IsExtended.md | 2 +- content/en/functions/resources/ToCSS.md | 2 +- content/en/getting-started/configuration-build.md | 10 +++++----- content/en/hugo-modules/configuration.md | 2 +- content/en/hugo-pipes/transpile-sass-to-css.md | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md index 69d548d95..ef6fd9d37 100644 --- a/content/en/contribute/development.md +++ b/content/en/contribute/development.md @@ -161,7 +161,7 @@ Step 10 ## Building from source -You can build, install, and test Hugo at any point in its development history. The examples below build and install the extended version of Hugo. +You can build, install, and test Hugo at any point in its development history. The examples below build and install the extended edition of Hugo. To build and install the latest release: diff --git a/content/en/functions/css/Sass.md b/content/en/functions/css/Sass.md index 45f103e5d..80f828dd5 100644 --- a/content/en/functions/css/Sass.md +++ b/content/en/functions/css/Sass.md @@ -91,7 +91,7 @@ silenceDeprecations ## Dart Sass -The extended version of Hugo includes [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. +Hugo's extended and extended/deploy editions include [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. Use the latest features of the Sass language by installing Dart Sass in your development and production environments. diff --git a/content/en/functions/hugo/IsExtended.md b/content/en/functions/hugo/IsExtended.md index 84b68e6d3..9beac6e49 100644 --- a/content/en/functions/hugo/IsExtended.md +++ b/content/en/functions/hugo/IsExtended.md @@ -1,6 +1,6 @@ --- title: hugo.IsExtended -description: Reports whether the Hugo binary is the extended version. +description: Reports whether the Hugo binary is either the extended or extended/deploy edition. categories: [] keywords: [] action: diff --git a/content/en/functions/resources/ToCSS.md b/content/en/functions/resources/ToCSS.md index b944c72aa..0bd66455b 100644 --- a/content/en/functions/resources/ToCSS.md +++ b/content/en/functions/resources/ToCSS.md @@ -92,7 +92,7 @@ includePaths ## Dart Sass -The extended version of Hugo includes [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. +Hugo's extended and extended/deploy editions include [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. Use the latest features of the Sass language by installing Dart Sass in your development and production environments. diff --git a/content/en/getting-started/configuration-build.md b/content/en/getting-started/configuration-build.md index 637bfeb22..8ec88f61c 100644 --- a/content/en/getting-started/configuration-build.md +++ b/content/en/getting-started/configuration-build.md @@ -16,21 +16,21 @@ The `build` configuration section contains global build-related configuration op {{< code-toggle config=build />}} -#### buildStats +###### buildStats See [Configure buildStats](#configure-build-stats). -#### cachebusters +###### cachebusters See [Configure Cache Busters](#configure-cache-busters). -#### noJSConfigInAssets +###### noJSConfigInAssets (`bool`) If `true`, turns off 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. -#### useResourceCacheWhen +###### useResourceCacheWhen -(`string`) When to use the cached resources in `/resources/_gen` for PostCSS and ToCSS. Valid values are `never`, `always` and `fallback`. The last value means that the cache will be tried if PostCSS/extended version is not available. +(`string`) When to use the resource file cache, one of `never`, `fallback`, or `always`. Applicable when transpiling Sass to CSS. Default is `fallback`. ## Configure cache busters diff --git a/content/en/hugo-modules/configuration.md b/content/en/hugo-modules/configuration.md index 3fb1fbeec..13d160568 100644 --- a/content/en/hugo-modules/configuration.md +++ b/content/en/hugo-modules/configuration.md @@ -75,7 +75,7 @@ max : (`string`) The maximum Hugo version supported, e.g. `0.55.0` extended -: (`bool`) Whether the extended version of Hugo is required. +: (`bool`) Whether the extended edition of Hugo is required, satisfied by installing either the extended or extended/deploy edition. ## Module configuration: imports diff --git a/content/en/hugo-pipes/transpile-sass-to-css.md b/content/en/hugo-pipes/transpile-sass-to-css.md index a7f790c8a..18cfcb0ca 100644 --- a/content/en/hugo-pipes/transpile-sass-to-css.md +++ b/content/en/hugo-pipes/transpile-sass-to-css.md @@ -83,7 +83,7 @@ includePaths ## Dart Sass -The extended version of Hugo includes [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. +Hugo's extended and extended/deploy editions include [LibSass] to transpile Sass to CSS. In 2020, the Sass team deprecated LibSass in favor of [Dart Sass]. Use the latest features of the Sass language by installing Dart Sass in your development and production environments.