zola/components/rendering/src/lib.rs
2017-07-01 16:47:41 +09:00

28 lines
502 B
Rust

#[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 utils;
#[cfg(test)]
extern crate templates;
mod context;
pub mod highlighting;
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;