2015-07-19 06:08:38 +08:00
|
|
|
pub use self::html_handlebars::HtmlHandlebars;
|
|
|
|
|
2015-08-06 04:35:26 +08:00
|
|
|
mod html_handlebars;
|
2016-04-27 20:19:59 +08:00
|
|
|
|
2017-06-25 00:10:06 +08:00
|
|
|
use errors::*;
|
2016-04-27 20:19:59 +08:00
|
|
|
|
|
|
|
pub trait Renderer {
|
2017-06-25 00:10:06 +08:00
|
|
|
fn render(&self, book: &::book::MDBook) -> Result<()>;
|
2016-04-27 20:19:59 +08:00
|
|
|
}
|