tenjin 0.5.1

A fast and simple template engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate htmlescape;
#[cfg(feature = "serde_json")]
extern crate serde_json;
#[cfg(feature = "toml")]
extern crate toml;

mod macros;
pub mod compile;
pub mod context;
pub mod error;
pub mod path;
pub mod render;

pub use context::{Raw, Context};
pub use error::{Error, Result};
pub use render::Tenjin;
pub use compile::Template;