···251251 }
252252 }
253253 "" if !*in_preformatted => {
254254- // If the line has nothing on it, it is a whitespace line, as long as
255255- // we aren't in a preformatted line context.
256256- nodes.push(Node::Whitespace);
254254+ if line.is_empty() {
255255+ // If the line has nothing on it, it is a whitespace line, as long
256256+ // as we aren't in a preformatted line context.
257257+ nodes.push(Node::Whitespace);
258258+ } else {
259259+ nodes.push(Node::Text(line.to_string()));
260260+ }
257261258262 break;
259263 }