jotdown/src/lib.rs

11 lines
117 B
Rust
Raw Normal View History

2022-11-12 12:45:17 -05:00
mod block;
mod span;
mod tree;
pub use block::parse;
pub use block::Tree;
const EOF: char = '\0';
use span::Span;