tangled
alpha
login
or
join now
eldridge.cam
/
paper-terminal
0
fork
atom
Print Markdown to a paper in your terminal
0
fork
atom
overview
issues
pulls
pipelines
update to 2024
eldridge.cam
11 months ago
041bafd8
0edac448
+3
-3
2 changed files
expand all
collapse all
unified
split
Cargo.toml
src
printer.rs
+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
12
-
edition = "2018"
12
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
59
-
Scope::ListItem(Some(index), ref mut handled) => {
59
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
67
-
Scope::ListItem(None, ref mut handled) => {
67
67
+
Scope::ListItem(None, handled) => {
68
68
if *handled {
69
69
" ".to_owned()
70
70
} else {