have checkboxes only point to date-check lines in files (#1603)
They currently also point to filenames, which is redundant. current - [ ] thir.md - [ ] line 7: 2022-04 - [ ] line 60: 2022-08 - [ ] traits/chalk.md - [ ] line 4: 2022-05 proposed - thir.md - [ ] line 7: 2022-04 - [ ] line 60: 2022-08 - traits/chalk.md - [ ] line 4: 2022-05
This commit is contained in:
parent
19f6cc82a5
commit
12f5d8d84f
|
|
@ -170,7 +170,7 @@ fn main() {
|
||||||
|
|
||||||
for (path, dates) in dates_by_file {
|
for (path, dates) in dates_by_file {
|
||||||
println!(
|
println!(
|
||||||
"- [ ] {}",
|
"- {}",
|
||||||
path.strip_prefix(&root_dir_path).unwrap_or(&path).display(),
|
path.strip_prefix(&root_dir_path).unwrap_or(&path).display(),
|
||||||
);
|
);
|
||||||
for (line, date) in dates {
|
for (line, date) in dates {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue