Plugin

Trait Plugin 

Source
pub trait Plugin: Send + Sync {
    // Required method
    fn generate_content(&self, store: &DocumentStore) -> Result<String, String>;
}
Expand description

Trait for plugins that dynamically generate page content

Required Methods§

Source

fn generate_content(&self, store: &DocumentStore) -> Result<String, String>

Generate content for this plugin based on the current wiki state

Implementors§