diff options
| author | Fuwn <[email protected]> | 2025-05-27 17:25:59 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-27 17:25:59 +0000 |
| commit | 8efcacd3bf1140ba29854a34b5382877e6af6066 (patch) | |
| tree | 1e1058b0746a4b9c00bc1f5a2e2fc7cac5d0b4d1 /src | |
| parent | fix(html): Default condense behaviour regression (diff) | |
| download | september-8efcacd3bf1140ba29854a34b5382877e6af6066.tar.xz september-8efcacd3bf1140ba29854a34b5382877e6af6066.zip | |
fix(html): Show Gemini fragment when condensing by link
Diffstat (limited to 'src')
| -rw-r--r-- | src/html.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.rs b/src/html.rs index 899f011..7c19578 100644 --- a/src/html.rs +++ b/src/html.rs @@ -239,7 +239,7 @@ pub fn from_gemini( let _ = write!( &mut html, r#"{}<a href="{}">{}</a>"#, - if condense_links { "" } else { GEMINI_FRAGMENT }, + GEMINI_FRAGMENT, href, safe(text.as_ref().unwrap_or(to)).trim(), ); |