notedown_ast 0.13.6

notedown ast and converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod arith;
mod context;
mod display;
mod slugify;
mod toc;

pub use context::ContextKind;
pub use toc::{TableNode, TableOfContent};

pub trait Slugify {
    fn slugify(&self) -> String;
}

pub trait ContextAware {
    fn context_aware(&self, offset: u32) -> ContextKind;
}