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 | f315ed2d6c6e0aa18cef8debd1b174a48c9a800e (patch) | |
| tree | f0fe17d3197e151016c32f8519ad78a565c34d2f /Configuration.md | |
| parent | feat(response): clean up proxy info (diff) | |
| download | september-f315ed2d6c6e0aa18cef8debd1b174a48c9a800e.tar.xz september-f315ed2d6c6e0aa18cef8debd1b174a48c9a800e.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> +``` |