pub fn parse(data: &[u8]) { if let Ok(s) = std::str::from_utf8(data) { jotdown::Parser::new(s).last(); } }