mdbook/src/renderer/mod.rs

9 lines
188 B
Rust

pub use self::html_handlebars::HtmlHandlebars;
mod html_handlebars;
use std::error::Error;
pub trait Renderer {
fn render(&self, book: &::book::MDBook) -> Result<(), Box<Error>>;
}