Compare commits
No commits in common. "9cc32fe65a38de3e9c2784b83d32c1517cc0fe81" and "754ae271d76cdefce0edfeb8894a76e7d54f9cfa" have entirely different histories.
9cc32fe65a
...
754ae271d7
8
TODO.md
8
TODO.md
|
|
@ -1,8 +0,0 @@
|
||||||
- [ ] Obsidian properties
|
|
||||||
- [ ] encoding in YAML (using Serde)
|
|
||||||
- [ ] config for default properties
|
|
||||||
- [ ] formatting for properties such as dates
|
|
||||||
- [ ] update rendering to use comrak (it's been update)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -19,6 +19,7 @@ use std::path::Path;
|
||||||
use std::process::Command;
|
use std::process::Command;
|
||||||
use todo::{File as TodoFile, TaskGroup};
|
use todo::{File as TodoFile, TaskGroup};
|
||||||
|
|
||||||
|
// TODO: add options to use specific date instead of args.previous
|
||||||
fn main() {
|
fn main() {
|
||||||
// setup
|
// setup
|
||||||
let args = Args::parse();
|
let args = Args::parse();
|
||||||
|
|
|
||||||
|
|
@ -2,4 +2,4 @@ mod file;
|
||||||
mod tasks;
|
mod tasks;
|
||||||
|
|
||||||
pub use file::File;
|
pub use file::File;
|
||||||
pub use tasks::{Status, Task, TaskGroup};
|
pub use tasks::{Status, TaskGroup};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue