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