Miscellaneous edits

This commit is contained in:
Joe Mooring
2024-06-27 10:46:00 -07:00
committed by GitHub
parent 3fdd5819b5
commit 2600a8a2e2
11 changed files with 25 additions and 28 deletions
+9 -6
View File
@@ -80,17 +80,19 @@ toc: true
[URL management] [URL management]
: Serve any page from any path via global configuration or on a page-by-page basis. : Serve any page from any path via global configuration or on a page-by-page basis.
## Asset pipelines ## Asset pipelines
[CSS bundling] [Image processing]
: Transpile Sass to CSS, bundle, tree shake, minify, create source maps, perform SRI hashing, and integrate with PostCSS. : Convert, resize, crop, rotate, adjust colors, apply filters, overlay text and images, and extract EXIF data.
[JavaScript bundling] [JavaScript bundling]
: Transpile TypeScript and JSX to JavaScript, bundle, tree shake, minify, create source maps, and perform SRI hashing. : Transpile TypeScript and JSX to JavaScript, bundle, tree shake, minify, create source maps, and perform SRI hashing.
[Image processing] [Sass processing]
: Convert, resize, crop, rotate, adjust colors, apply filters, overlay text and images, and extract EXIF data. : 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 classes into standard CSS, bundle, tree shake, optimize, minify, perform SRI hashing, and integrate with PostCSS.
## Performance ## Performance
@@ -104,7 +106,7 @@ toc: true
: Minify HTML, CSS, and JavaScript to reduce file size, bandwidth consumption, and loading times. : Minify HTML, CSS, and JavaScript to reduce file size, bandwidth consumption, and loading times.
[CCPA]: https://en.wikipedia.org/wiki/California_Consumer_Privacy_Act [CCPA]: https://en.wikipedia.org/wiki/California_Consumer_Privacy_Act
[CSS bundling]: /functions/resources/tocss/ [Sass processing]: /functions/css/Sass/
[Caching]: /functions/partials/includecached/ [Caching]: /functions/partials/includecached/
[CommonMark]: https://spec.commonmark.org/current/ [CommonMark]: https://spec.commonmark.org/current/
[Content adapters]: /content-management/content-adapters/ [Content adapters]: /content-management/content-adapters/
@@ -130,6 +132,7 @@ toc: true
[Segmentation]: /getting-started/configuration/#configure-segments [Segmentation]: /getting-started/configuration/#configure-segments
[Shortcodes]: /content-management/shortcodes/ [Shortcodes]: /content-management/shortcodes/
[Syntax highlighting]: /content-management/syntax-highlighting/ [Syntax highlighting]: /content-management/syntax-highlighting/
[Tailwind CSS processing]: /functions/css/tailwindcss/
[Taxonomies]: /content-management/taxonomies/ [Taxonomies]: /content-management/taxonomies/
[Templates]: templates/introduction/ [Templates]: templates/introduction/
[Themes]: https://themes.gohugo.io/ [Themes]: https://themes.gohugo.io/
+2 -4
View File
@@ -6,10 +6,8 @@ keywords: []
action: action:
aliases: [postCSS] aliases: [postCSS]
related: related:
- functions/resources/Fingerprint
- functions/resources/Minify
- functions/resources/PostProcess
- functions/css/Sass - functions/css/Sass
- functions/css/TailwindCSS
returnType: resource.Resource returnType: resource.Resource
signatures: ['css.PostCSS [OPTIONS] RESOURCE'] signatures: ['css.PostCSS [OPTIONS] RESOURCE']
toc: true toc: true
@@ -128,4 +126,4 @@ module.exports = {
[node.js]: https://nodejs.org/en/download [node.js]: https://nodejs.org/en/download
[postcss plugins]: https://www.postcss.parts/ [postcss plugins]: https://www.postcss.parts/
[supported file name]: https://github.com/postcss/postcss-load-config#usage [supported file name]: https://github.com/postcss/postcss-load-config#usage
[transpile to CSS]: /functions/resources/tocss.md [transpile to CSS]: /functions/css/sass/
+1
View File
@@ -8,6 +8,7 @@ action:
related: related:
- functions/resources/Fingerprint - functions/resources/Fingerprint
- functions/resources/Minify - functions/resources/Minify
- functions/css/PostCSS
returnType: resource.Resource returnType: resource.Resource
signatures: ['css.TailwindCSS [OPTIONS] RESOURCE'] signatures: ['css.TailwindCSS [OPTIONS] RESOURCE']
toc: true toc: true
+1 -1
View File
@@ -6,7 +6,7 @@ keywords: []
action: action:
aliases: [] aliases: []
related: related:
- functions/resources/Babel - functions/js/Babel
- functions/resources/Fingerprint - functions/resources/Fingerprint
- functions/resources/Minify - functions/resources/Minify
returnType: resource.Resource returnType: resource.Resource
-1
View File
@@ -4,7 +4,6 @@ description: Compiles the given JavaScript resource with Babel.
categories: [] categories: []
keywords: [] keywords: []
action: action:
aliases: [babel]
related: related:
- functions/js/Build - functions/js/Build
- functions/resources/Fingerprint - functions/resources/Fingerprint
@@ -6,12 +6,11 @@ keywords: []
action: action:
aliases: [fingerprint] aliases: [fingerprint]
related: related:
- functions/js/Build
- functions/resources/Babel
- functions/resources/Minify - functions/resources/Minify
- functions/resources/PostCSS - functions/css/Sass
- functions/resources/PostProcess - functions/css/TailwindCSS
- functions/resources/ToCSS - functions/js/Build
- functions/js/Babel
returnType: resource.Resource returnType: resource.Resource
signatures: ['resources.Fingerprint [ALGORITHM] RESOURCE'] signatures: ['resources.Fingerprint [ALGORITHM] RESOURCE']
--- ---
+4 -4
View File
@@ -6,11 +6,11 @@ keywords: []
action: action:
aliases: [minify] aliases: [minify]
related: related:
- functions/js/Build
- functions/resources/Babel
- functions/resources/Fingerprint - functions/resources/Fingerprint
- functions/resources/PostCSS - functions/css/Sass
- functions/resources/ToCSS - functions/css/TailwindCSS
- functions/js/Build
- functions/js/Babel
returnType: resource.Resource returnType: resource.Resource
signatures: [resources.Minify RESOURCE] signatures: [resources.Minify RESOURCE]
--- ---
+1 -2
View File
@@ -4,7 +4,6 @@ description: Processes the given resource with PostCSS using any PostCSS plugin.
categories: [] categories: []
keywords: [] keywords: []
action: action:
aliases: [postCSS]
related: related:
- functions/resources/Fingerprint - functions/resources/Fingerprint
- functions/resources/Minify - functions/resources/Minify
@@ -133,4 +132,4 @@ module.exports = {
[node.js]: https://nodejs.org/en/download [node.js]: https://nodejs.org/en/download
[postcss plugins]: https://www.postcss.parts/ [postcss plugins]: https://www.postcss.parts/
[supported file name]: https://github.com/postcss/postcss-load-config#usage [supported file name]: https://github.com/postcss/postcss-load-config#usage
[transpile to CSS]: /functions/resources/tocss.md [transpile to CSS]: /functions/css/sass/
@@ -6,10 +6,8 @@ keywords: []
action: action:
aliases: [] aliases: []
related: related:
- functions/resources/Fingerprint - functions/css/PostCSS
- functions/resources/Minify - functions/css/Sass
- functions/resources/PostCSS
- functions/resources/ToCSS
returnType: postpub.PostPublishedResource returnType: postpub.PostPublishedResource
signatures: [resources.PostProcess RESOURCE] signatures: [resources.PostProcess RESOURCE]
toc: true toc: true
-1
View File
@@ -4,7 +4,6 @@ description: Transpiles Sass to CSS.
categories: [] categories: []
keywords: [] keywords: []
action: action:
aliases: [toCSS]
related: related:
- functions/resources/Fingerprint - functions/resources/Fingerprint
- functions/resources/Minify - functions/resources/Minify
+1
View File
@@ -7,6 +7,7 @@ menu:
docs: docs:
identifier: identifier:
parent: methods parent: methods
aliases: [/variables/taxonomy/]
--- ---
Use these methods with Taxonomy objects. Use these methods with Taxonomy objects.