1mod ever; 2mod parser; 3 4pub fn textify(s: &str, inline: bool) -> String { 5 parser::HtmlParser::run(s, inline).ok().unwrap_or_default() 6}