monochromium 0.4.2

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

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;
pub use trim::trim_text;