summaryrefslogtreecommitdiffstats
path: root/docs/content
AgeCommit message (Collapse)Author
9 dayssource: Expose GitInfo BodyPeskyPotato
Updated bep/gitmap to v1.4.0, to get commit message's Body. Added Body to GitInfo struct. Docs upated with commit body example. Fixes #10905
2024-06-21Merge commit '8b9803425e63e1b1801f8d5d676e96368d706722'Bjørn Erik Pedersen
2024-06-20deploy: Add stripIndexHtml target optionDietrich Epp
This new configuration parameter causes paths matching "<dir>/index.html" to be stored as "<dir>/" remotely. This simplifies the cloud configuration needed for some use cases, such as CloudFront distributions with S3 bucket origins. Before this change, users must configure their S3 buckets as public websites (which is incompatible with certain authentication / authorization schemes), or users must add a CloudFormation function to add index.html to the end of incoming requests. After this change, users can simply use an ordinary CloudFront distribution (no additional code) with an ordinary S3 bucket origin (and not an S3 website). This adds tests to ensure that functionality like matchers is unaffected by this change. I have also tested that the functionality works as expected when deploying to a real S3 / CloudFront website. Closes #12607
2024-04-20commands: Add gen chromastyles --lineNumbersTableStyle flagJoe Mooring
For symmetry, also rename --linesStyle to --lineNumbersInlineStyle. Closes #12393
2024-03-16docs: Regen CLI docsBjørn Erik Pedersen
2024-03-07docs: Fix hyphens and grammar in synopsis of command 'hugo server'Andreas Deininger
2024-02-23js: Support JSX and JSXImportSourceOptionsBenjamin Altpeter
Fixes #12118
2024-02-19Merge commit '2658a71e1b6fe24a8b754a62ce0398a09d270d86'Bjørn Erik Pedersen
2024-02-11Add images.Dither filterJoe Mooring
Closes #8598
2024-02-07docs: Regen CLI docsBjørn Erik Pedersen
2024-02-07Merge commit '6efb279bfacbd7304cef994be8181c6f804e7dd4'Bjørn Erik Pedersen
2024-01-27Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'Bjørn Erik Pedersen
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
2024-01-27docs: Prepare for new sub treeBjørn Erik Pedersen
See #11925
2024-01-26Merge commit '7125ad401ad043e46262afc7eca8dceb6d54bb9e'Bjørn Erik Pedersen
2024-01-25parser/metadecoders: Accumulate org keywords into arraysAugust Feng
Closes #11743
2024-01-16parser/metadecoders: Add CSV lazyQuotes option to transform.UnmarshalJoe Mooring
If true, a quote may appear in an unquoted field and a non-doubled quote may appear in a quoted field. It defaults to false. Closes #11884
2023-12-29tpl/math: Add math.Rand template functionJoe Mooring
Closes #11833
2023-12-20resources/images: Create AutoOrient image filterJoe Mooring
Closes #11717
2023-12-04docs: Adjust last merge from docs repositoryJoe Mooring
2023-12-04Merge commit '35dec7c96f7ee3eb17dd444f7067f0c776fb56ae'Bjørn Erik Pedersen
2023-11-27tpl/transform: Add transform.XMLEscape template functionJoe Mooring
Fixes #3268
2023-10-30commands/new: Remove format flag from new content cmdJoe Mooring
Fixes #11462
2023-10-29Merge commit 'aaaf1c8df5d6aa061609d20510f7fa6c42e5cc1a'Bjørn Erik Pedersen
2023-10-29resources/images: Create padding image filterJoe Mooring
Closes #11599
2023-10-27Merge commit '3710a5ec7efe6baca6e452f43632c05d22bab3c4'Bjørn Erik Pedersen
2023-10-20Merge commit 'e509cac533600cf4fa8382c9cdab78ddd82db688'Bjørn Erik Pedersen
2023-10-18hugolib: Deprecate .Site.DisqusShortnameJoe Mooring
Use .Site.Config.Services.Disqus.Shortname instead.
2023-10-17hugolib: Deprecate .Site.GoogleAnalyticsJoe Mooring
Use .Site.Config.Services.GoogleAnalytics.ID instead.
2023-10-17tpl/tplimpl: Deprecate .Site.Social usage with internal templatesJoe Mooring
2023-10-06common/hugo: Add hugo.IsServer and hugo.IsDevelopmentJoe Mooring
And deprecate site.IsServer. Closes #11510
2023-09-24docs: Even more about images.ProcessBjørn Erik Pedersen
2023-09-24docs: More about images.ProcessBjørn Erik Pedersen
2023-09-24Merge commit '9aec42c5452b3eb224888c50ba1c3f3b68a447e9'Bjørn Erik Pedersen
2023-09-24Add images.Process filterBjørn Erik Pedersen
This allows for constructs like: ``` {{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg q30 resize 200x") }} {{ $img = $img | images.Filter $filters }} ``` Note that the `action` option in `images.Process` is optional (`resize` in the example above), so you can use the above to just set the target format, e.g.: ``` {{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg") }} {{ $img = $img | images.Filter $filters }} ``` Fixes #8439
2023-09-24Add $image.ProcessBjørn Erik Pedersen
Which supports all the existing actions: resize, crop, fit, fill. But it also allows plain format conversions: ``` {{ $img = $img.Process "webp" }} ``` Which will be a simple re-encoding of the source image. Fixes #11483
2023-09-22Add images.Opacity filterBjørn Erik Pedersen
Fixes #11471
2023-08-30Merge commit '77b976dd92b4f66657d83d875aef0c617df492d9'Bjørn Erik Pedersen
2023-08-07Add all config to docshelper.jsonBjørn Erik Pedersen
Also consolidate so the mediaTypes and outputFormats are listed once only. Fixes #11328
2023-08-07Merge commit '7c62d6ef1654c0383eae474d3bd9ddf7754c1f30'Bjørn Erik Pedersen
2023-07-30docs: Regenerate CLI docsBjørn Erik Pedersen
2023-07-29Update where.mdBjørn Erik Pedersen
2023-07-29docs: Update whereBjørn Erik Pedersen
Go doesn't use the RE2 (C++) library, it's a pure Go implementation.
2023-07-29docs: Update where function operatorsJoe Mooring
Related to #11281
2023-07-29docs: Rework the cacheDir documentationBjørn Erik Pedersen
2023-07-29Merge commit '87de22d7464e239c775fbd48ebce1665d5b1e80d'Bjørn Erik Pedersen
2023-07-05Add titleCaseStyle none and firstupperBjørn Erik Pedersen
Fixes #11204
2023-06-27docs: Update permalinks documentationJoe Mooring
See #8523 See #10847
2023-06-19docs: Regen CLI docsBjørn Erik Pedersen
2023-06-13Merge commit '3c1deaf201a35de08d23cc58f8f03682cace3349'Bjørn Erik Pedersen
2023-06-12cache: Set default cache path based on $USERErica Mays
Change the default cache directory to `$TMPDIR/hugo_cache_$USER`, so that multi-user systems do not have caches that interfere with each other. The other cache-choosing logic (e.g. Netlify exceptions, configuration options) are not affected. Fixes #7391