orgflow 0.2.0

A Rust library for managing documents with support for tasks and notes
Documentation
1
2
3
4
5
6
7
8
9
mod config;
mod core;
mod io;

pub use config::Configuration;
pub use core::note::Note;
pub use core::task::Task;
pub use core::tags::{Tag, TagCollection};
pub use io::{OrgDocument, TagSuggestions};