diff options
| author | Fuwn <[email protected]> | 2024-04-04 03:01:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-04 03:01:18 +0000 |
| commit | 951b44440489ddac0cba1c08c633a02b047a89df (patch) | |
| tree | ef88eb7769de5b858ce7075e04b2bc436a3c33ab /Configuration.md | |
| parent | feat(response): clean up proxy info (diff) | |
| download | september-951b44440489ddac0cba1c08c633a02b047a89df.tar.xz september-951b44440489ddac0cba1c08c633a02b047a89df.zip | |
feat(html): condense links option
Diffstat (limited to 'Configuration.md')
| -rw-r--r-- | Configuration.md | 21 |
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> +``` |