aboutsummaryrefslogtreecommitdiff
path: root/Configuration.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-19 07:52:02 +0000
committerFuwn <[email protected]>2024-06-19 07:52:02 +0000
commitf25e3befc4636cd96f2a53a93e60296b465b766a (patch)
treefa0d091292c6baea33da2eb22f5899a0f905a410 /Configuration.md
parentfeat(response): PLAIN_TEXT_ROUTES wildcard matching (diff)
downloadseptember-f25e3befc4636cd96f2a53a93e60296b465b766a.tar.xz
september-f25e3befc4636cd96f2a53a93e60296b465b766a.zip
feat: CONDENSE_LINKS_AT_HEADINGS configuration option
Diffstat (limited to 'Configuration.md')
-rw-r--r--Configuration.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/Configuration.md b/Configuration.md
index f58d2c7..8a15428 100644
--- a/Configuration.md
+++ b/Configuration.md
@@ -163,3 +163,19 @@ PRIMARY_COLOUR=var(--base09)
PRIMARY_COLOUR=red
PRIMARY_COLOUR=#ff0000
```
+
+## `CONDENSE_LINKS_AT_HEADING`
+
+This configuration option is similar to `CONDENSE_LINKS`, but only condenses
+links found under certain headings.
+
+For instance, I condense the few links I have on my index page under the
+"# Fuwn[.me]" heading, and I condense my quick links/navigation panel under the
+"## Quick Links" heading.
+
+This way, I don't accidentally condense say my entire sitemap, which could be
+hundreds of links long, but I do condense my quick links on every page.
+
+```dotenv
+CONDENSE_LINKS_AT_HEADINGS="## Quick Links,# Fuwn[.me]"
+```