zola/components/rendering/src/lib.rs

28 lines
507 B
Rust
Raw Normal View History

2017-07-01 07:47:41 +00:00
#[macro_use]
extern crate lazy_static;
extern crate regex;
extern crate tera;
extern crate syntect;
extern crate pulldown_cmark;
extern crate slug;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate errors;
extern crate front_matter;
extern crate highlighting;
2017-07-01 07:47:41 +00:00
extern crate utils;
#[cfg(test)]
extern crate templates;
mod context;
mod markdown;
mod short_code;
mod table_of_contents;
pub use context::Context;
pub use markdown::markdown_to_html;
pub use table_of_contents::Header;