diff options
| author | Fuwn <[email protected]> | 2024-06-19 07:52:02 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-19 07:52:02 +0000 |
| commit | f25e3befc4636cd96f2a53a93e60296b465b766a (patch) | |
| tree | fa0d091292c6baea33da2eb22f5899a0f905a410 /Configuration.md | |
| parent | feat(response): PLAIN_TEXT_ROUTES wildcard matching (diff) | |
| download | september-f25e3befc4636cd96f2a53a93e60296b465b766a.tar.xz september-f25e3befc4636cd96f2a53a93e60296b465b766a.zip | |
feat: CONDENSE_LINKS_AT_HEADINGS configuration option
Diffstat (limited to 'Configuration.md')
| -rw-r--r-- | Configuration.md | 16 |
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]" +``` |