mdsplode 0.4.1

A CLI tool for exploding and serialising Markdown files (metadata, AST, rendered parts, and rendered whole)
1
2
3
4
5
6
7
8
9
pub mod cmd;
pub mod runner;
pub mod state;
pub mod writer;

pub use runner::run;

pub const DEFAULT_PROMPT: &str = "sploder> ";
pub const DEFAULT_HISTORY_SIZE: usize = 1000;