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§
Sourcefn generate_content(&self, store: &DocumentStore) -> Result<String, String>
fn generate_content(&self, store: &DocumentStore) -> Result<String, String>
Generate content for this plugin based on the current wiki state