Replace tendril with smartstring

Slightly smaller API surface, less dependencies.
This commit is contained in:
Blaž Hrastnik 2022-02-07 14:03:04 +09:00
parent fdb9a1677b
commit f88c077f99
10 changed files with 69 additions and 80 deletions

View file

@ -120,7 +120,7 @@ pub mod md_gen {
}
fn md_table_row(cols: &[String]) -> String {
"| ".to_owned() + &cols.join(" | ") + " |\n"
format!("| {} |\n", cols.join(" | "))
}
fn md_mono(s: &str) -> String {