🦠 The Definitive Gemini Protocol Toolkit
gemini gemini-protocol gemtext parser zero-dependency toolkit ast converter html markdown cli networking
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(request): gemtext line endings

Fuwn 5495604f 361374b8

+1 -1
+1 -1
crates/germ/src/request/response.rs
··· 41 41 let mut string_split = string_form.split("\r\n"); 42 42 43 43 header = string_split.next().unwrap_or("").to_string(); 44 - content = Some(string_split.collect()); 44 + content = Some(string_split.map(|s| format!("{s}\r\n")).collect()); 45 45 } 46 46 47 47 let header_split = header.split_at(2);