pub trait ExportPlugin: Plugin {
// Required method
fn render(
&self,
entries: &[Entry],
options: &RenderOptions,
config: &Config,
) -> String;
}Expand description
The interface that export format plugins must implement.
Each plugin provides a trigger pattern used to match --output FORMAT values,
settings for configuration, and a render method that formats entries into a string.