Compare commits

...

2 Commits

Author SHA1 Message Date
Andrei Stoica 9cc32fe65a todo list 2024-05-24 14:14:01 -04:00
Andrei Stoica 319cbbef4d cleanup 2024-05-02 20:43:16 -04:00
3 changed files with 9 additions and 2 deletions

8
TODO.md Normal file
View File

@ -0,0 +1,8 @@
- [ ] 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)

View File

@ -19,7 +19,6 @@ 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();

View File

@ -2,4 +2,4 @@ mod file;
mod tasks; mod tasks;
pub use file::File; pub use file::File;
pub use tasks::{Status, TaskGroup}; pub use tasks::{Status, Task, TaskGroup};