···198198 "=" if !*in_preformatted => {
199199 // If the Gemtext line starts with an "=" ("=>"), it is a link line,
200200 // so splitting it up should be easy enough.
201201- let line = line.get(2..).unwrap();
201201+ let line = line.get(2..).unwrap_or("");
202202 let mut split = line
203203 .split_whitespace()
204204 .map(String::from)