markdown_that/common/
mod.rs

1//! Self-contained modules used for miscellaneous purposes.
2//!
3//! These are all candidates for being separated into different crates,
4//! tell me if the functionality they provide is useful enough to do that.
5
6pub mod ruler;
7pub mod sourcemap;
8pub mod utils;
9
10mod typekey;
11pub use typekey::TypeKey;