馃 The Definitive Gemini Protocol Toolkit
gemini gemini-protocol gemtext parser zero-dependency toolkit ast converter html markdown cli networking
at main 14 lines 241 B view raw
1#[cfg(test)] 2mod test { 3 #[test] 4 fn node_to_gemtext() { 5 assert_eq!( 6 germ::ast::Node::Link { 7 to: "/faq".to_string(), 8 text: Some("FAQ".to_string()), 9 } 10 .to_gemtext(), 11 "=> /faq FAQ", 12 ); 13 } 14}