mdBook/src/renderer/mod.rs
2017-06-25 00:10:06 +08:00

10 lines
168 B
Rust

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