diff --git a/content/en/about/features.md b/content/en/about/features.md index ff7e9ce138..7f7d55f2f5 100644 --- a/content/en/about/features.md +++ b/content/en/about/features.md @@ -80,17 +80,19 @@ toc: true [URL management] : Serve any page from any path via global configuration or on a page-by-page basis. - ## Asset pipelines -[CSS bundling] -: Transpile Sass to CSS, bundle, tree shake, minify, create source maps, perform SRI hashing, and integrate with PostCSS. +[Image processing] +: Convert, resize, crop, rotate, adjust colors, apply filters, overlay text and images, and extract EXIF data. [JavaScript bundling] : Transpile TypeScript and JSX to JavaScript, bundle, tree shake, minify, create source maps, and perform SRI hashing. -[Image processing] -: Convert, resize, crop, rotate, adjust colors, apply filters, overlay text and images, and extract EXIF data. +[Sass processing] +: Transpile Sass to CSS, bundle, tree shake, minify, create source maps, perform SRI hashing, and integrate with PostCSS. + +[Tailwind CSS processing] +: Compile Tailwind CSS utility clasess into standard CSS, bundle, tree shake, optimize, minify, perform SRI hashing, and integrate with PostCSS. ## Performance @@ -104,7 +106,7 @@ toc: true : Minify HTML, CSS, and JavaScript to reduce file size, bandwidth consumption, and loading times. [CCPA]: https://en.wikipedia.org/wiki/California_Consumer_Privacy_Act -[CSS bundling]: /functions/resources/tocss/ +[Sass processing]: /functions/css/Sass/ [Caching]: /functions/partials/includecached/ [CommonMark]: https://spec.commonmark.org/current/ [Content adapters]: /content-management/content-adapters/ @@ -130,6 +132,7 @@ toc: true [Segmentation]: /getting-started/configuration/#configure-segments [Shortcodes]: /content-management/shortcodes/ [Syntax highlighting]: /content-management/syntax-highlighting/ +[Tailwind CSS processing]: /functions/css/tailwindcss/ [Taxonomies]: /content-management/taxonomies/ [Templates]: templates/introduction/ [Themes]: https://themes.gohugo.io/ diff --git a/content/en/functions/css/PostCSS.md b/content/en/functions/css/PostCSS.md index ed1652d00e..a32aa12040 100644 --- a/content/en/functions/css/PostCSS.md +++ b/content/en/functions/css/PostCSS.md @@ -128,4 +128,4 @@ module.exports = { [node.js]: https://nodejs.org/en/download [postcss plugins]: https://www.postcss.parts/ [supported file name]: https://github.com/postcss/postcss-load-config#usage -[transpile to CSS]: /functions/resources/tocss.md +[transpile to CSS]: /functions/css/sass/ diff --git a/content/en/functions/js/Build.md b/content/en/functions/js/Build.md index 7d09c05f63..2a948416e0 100644 --- a/content/en/functions/js/Build.md +++ b/content/en/functions/js/Build.md @@ -6,7 +6,7 @@ keywords: [] action: aliases: [] related: - - functions/resources/Babel + - functions/js/Babel - functions/resources/Fingerprint - functions/resources/Minify returnType: resource.Resource diff --git a/content/en/functions/resources/Babel.md b/content/en/functions/resources/Babel.md index b2c46df2a2..b2b51ae971 100644 --- a/content/en/functions/resources/Babel.md +++ b/content/en/functions/resources/Babel.md @@ -4,7 +4,6 @@ description: Compiles the given JavaScript resource with Babel. categories: [] keywords: [] action: - aliases: [babel] related: - functions/js/Build - functions/resources/Fingerprint diff --git a/content/en/functions/resources/Fingerprint.md b/content/en/functions/resources/Fingerprint.md index 685214f96c..81e2d08b69 100644 --- a/content/en/functions/resources/Fingerprint.md +++ b/content/en/functions/resources/Fingerprint.md @@ -7,11 +7,11 @@ action: aliases: [fingerprint] related: - functions/js/Build - - functions/resources/Babel + - functions/js/Babel - functions/resources/Minify - - functions/resources/PostCSS + - functions/css/PostCSS - functions/resources/PostProcess - - functions/resources/ToCSS + - functions/css/Sass returnType: resource.Resource signatures: ['resources.Fingerprint [ALGORITHM] RESOURCE'] --- diff --git a/content/en/functions/resources/Minify.md b/content/en/functions/resources/Minify.md index 9749df20a4..ea412579ac 100644 --- a/content/en/functions/resources/Minify.md +++ b/content/en/functions/resources/Minify.md @@ -7,10 +7,10 @@ action: aliases: [minify] related: - functions/js/Build - - functions/resources/Babel + - functions/js/Babel - functions/resources/Fingerprint - - functions/resources/PostCSS - - functions/resources/ToCSS + - functions/css/PostCSS + - functions/css/Sass returnType: resource.Resource signatures: [resources.Minify RESOURCE] --- diff --git a/content/en/functions/resources/PostCSS.md b/content/en/functions/resources/PostCSS.md index 9c51639cba..f495b16fe1 100644 --- a/content/en/functions/resources/PostCSS.md +++ b/content/en/functions/resources/PostCSS.md @@ -4,7 +4,6 @@ description: Processes the given resource with PostCSS using any PostCSS plugin. categories: [] keywords: [] action: - aliases: [postCSS] related: - functions/resources/Fingerprint - functions/resources/Minify @@ -133,4 +132,4 @@ module.exports = { [node.js]: https://nodejs.org/en/download [postcss plugins]: https://www.postcss.parts/ [supported file name]: https://github.com/postcss/postcss-load-config#usage -[transpile to CSS]: /functions/resources/tocss.md +[transpile to CSS]: /functions/css/sass/ diff --git a/content/en/functions/resources/PostProcess.md b/content/en/functions/resources/PostProcess.md index f9192aa9f5..43fb19a288 100644 --- a/content/en/functions/resources/PostProcess.md +++ b/content/en/functions/resources/PostProcess.md @@ -8,8 +8,8 @@ action: related: - functions/resources/Fingerprint - functions/resources/Minify - - functions/resources/PostCSS - - functions/resources/ToCSS + - functions/css/PostCSS + - functions/css/Sass returnType: postpub.PostPublishedResource signatures: [resources.PostProcess RESOURCE] toc: true diff --git a/content/en/functions/resources/ToCSS.md b/content/en/functions/resources/ToCSS.md index b6f72e908b..bd98dab198 100644 --- a/content/en/functions/resources/ToCSS.md +++ b/content/en/functions/resources/ToCSS.md @@ -4,7 +4,6 @@ description: Transpiles Sass to CSS. categories: [] keywords: [] action: - aliases: [toCSS] related: - functions/resources/Fingerprint - functions/resources/Minify diff --git a/content/en/methods/taxonomy/_index.md b/content/en/methods/taxonomy/_index.md index e7eb57834c..18c7f12c9a 100644 --- a/content/en/methods/taxonomy/_index.md +++ b/content/en/methods/taxonomy/_index.md @@ -7,6 +7,7 @@ menu: docs: identifier: parent: methods +aliases: [/variables/taxonomy/] --- Use these methods with Taxonomy objects.