/
githubmirror
/
awesome-rust
Обзор
Документация
Войти
/
githubmirror
/
awesome-rust
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/bin/cleanup.rs
45 строк
1 KB
Tom Parker-Shemilt
Use the easier to type dash for name separation
27 июн 2024, 23:15
27 июн 2024, 23:15
d9cbf83
Код
Авторство
О чём код?
// Cleans up `README.md` // Usage: cargo run --bin cleanup use std::fs; use std::fs::File; use std::io::Read; fn fix_dashes(lines: Vec<String>) -> Vec<String> { let mut fixed_lines: Vec<String> = Vec::with_capacity(lines.len()); let mut within_content = false; for line in lines { if within_content { fixed_lines.push(line.replace(" — ", " - ")); } else { if line.starts_with("## Applications") { within_content = true; } fixed_lines.push(line.to_string()); } } fixed_lines } fn main() { // Read the awesome file. let mut file = File::open("README.md").expect("Failed to read the file"); let mut contents = String::new(); file.read_to_string(&mut contents) .expect("Failed to read file contents"); // Split contents into lines. let lines: Vec<String> = contents.lines().map(|l| l.to_string()).collect(); // Fix the dashes. let fixed_contents = fix_dashes(lines); // Write the awesome file. fs::write("README.md", fixed_contents.join("\n").as_bytes()) .expect("Failed to write to the file"); }