Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kc0bfv/autophugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvia <sylvie@gmail.com>2021-09-10 12:13:57 +0300
committerKarl <kc0bfv@gmail.com>2021-11-11 23:35:01 +0300
commit82edf7740b3aaab052f8603e23656d9782613487 (patch)
tree1d76c661c4d7282fb328a986d3902d7ba4f67579
parent3510c18fc9e95534fdd48f5736f08ffb14b631c2 (diff)
Document some caveats
Feeble attempt to explain the weirdness of .Sections.ByWeight when it comes to null/0 values in weights
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6be30f7..2b296d6 100644
--- a/README.md
+++ b/README.md
@@ -125,6 +125,14 @@ You can place images and subalbums together - the `assets` directory would conta
**Watch out!** This is likely to be confusing to users though. There's no default delineation when these mixed albums are displayed. Subalbums display towards the top, and images lower - but otherwise a user will have no clear idea what will happen when they click an image. Will it display full-sized, or will it open a subalbum?
+## Using Custom Weights
+
+When using custom weights (`sort_by_weight: true`) at section level be mindful that Hugo treats a weight of 0 as undefined. This means that an asset with weight 0 is sorted AFTER any non-null weight, positive or negative.
+
+At resource level, the sort order is as expected, with any `weight: 0` resourse sorted below negative and above positive weights.
+
+Setting `sort_by_weight: true` but not specifying any weights (or `weight: 0` only) currently results in the same sort order than `sort_by_weight: false`, but should be avoided to avoid surprises later.
+
## Building the Site
Run `hugo` to build your site. Output will be placed in the `public` directory. The original images will not be included - only the resized versions.