Print Markdown to a paper in your terminal

update to 2024

+3 -3
+1 -1
Cargo.toml
··· 9 9 readme = "README.md" 10 10 version = "3.1.0" 11 11 authors = ["Cameron Eldridge <cam.eldridge@gmail.com>"] 12 - edition = "2018" 12 + edition = "2024" 13 13 categories = ["command-line-utilities"] 14 14 15 15 [[bin]]
+2 -2
src/printer.rs
··· 56 56 match self { 57 57 Scope::Indent => " ".to_owned(), 58 58 Scope::FootnoteContent => " ".to_owned(), 59 - Scope::ListItem(Some(index), ref mut handled) => { 59 + Scope::ListItem(Some(index), handled) => { 60 60 if *handled { 61 61 " ".to_owned() 62 62 } else { ··· 64 64 format!("{: <4}", format!("{}.", index)) 65 65 } 66 66 } 67 - Scope::ListItem(None, ref mut handled) => { 67 + Scope::ListItem(None, handled) => { 68 68 if *handled { 69 69 " ".to_owned() 70 70 } else {