aboutsummaryrefslogtreecommitdiff
path: root/Configuration.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-04-04 03:01:18 +0000
committerFuwn <[email protected]>2024-04-04 03:01:18 +0000
commitf315ed2d6c6e0aa18cef8debd1b174a48c9a800e (patch)
treef0fe17d3197e151016c32f8519ad78a565c34d2f /Configuration.md
parentfeat(response): clean up proxy info (diff)
downloadseptember-f315ed2d6c6e0aa18cef8debd1b174a48c9a800e.tar.xz
september-f315ed2d6c6e0aa18cef8debd1b174a48c9a800e.zip
feat(html): condense links option
Diffstat (limited to 'Configuration.md')
-rw-r--r--Configuration.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/Configuration.md b/Configuration.md
index e87678d..b461b7e 100644
--- a/Configuration.md
+++ b/Configuration.md
@@ -123,3 +123,24 @@ Any non-empty value other than `1` will enable this feature, while removing the
```dotenv
EMBED_IMAGES=2
```
+
+## `CONDENSE_LINKS`
+
+Condense adjacent links to a single line
+
+A value of `*` will condense all adjacent links to a single line.
+
+A comma-separated list of paths will condense adjacent links to a single line only on those paths.
+
+### Example
+
+```plaintext
+<!-- Not condensed -->
+
+<p><a href="/">Link</a></p>
+<p><a href="/">Link</a></p>
+<p><a href="/">Link</a></p>
+
+<!-- Condensed -->
+<p><a href="/">Link</a> | <a href="/">Link</a> | <a href="/">Link</a></p>
+```