monochromium 0.3.0

A fast, local-first CLI note-taking app for developers
1
2
3
4
5
6
7
8
9
10
11
mod clipboard;
mod parse_note;
mod pretty_notes;
mod string_check;
mod title;

pub use clipboard::{copy, get_paste};
pub use parse_note::parse_note;
pub use pretty_notes::pretty_notes;
pub use string_check::string_check;
pub use title::make_title;