mod context;
mod display;
mod into_node;
mod slugify;
mod toc;
pub use self::{
context::ContextKind,
into_node::IntoASTNode,
toc::{TableOfContent, TocNode},
};
pub trait Slugify {
fn slugify(&self) -> String;
}
pub trait ContextAware {
fn context_aware(&self, offset: u32) -> ContextKind;
}