pub trait MarkdownPreprocessor: Display {
    // Required methods
    fn name(&self) -> String;
    fn process(&self, input: &str, ctx: &Context) -> Result<String, Error>;
}

Required Methods§

source

fn name(&self) -> String

source

fn process(&self, input: &str, ctx: &Context) -> Result<String, Error>

Implementors§