mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Replace tendril with smartstring
Slightly smaller API surface, less dependencies.
This commit is contained in:
parent
fdb9a1677b
commit
f88c077f99
10 changed files with 69 additions and 80 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue