pub trait CoreRule: 'static {
    fn run(root: &mut Node, md: &MarkdownIt);
}
Expand description

Each member of core rule chain must implement this trait

Required Methods

Implementors