mage 0.2.0

An intuitive and powerful template engine.
Documentation

mage
===
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![docs](https://docs.rs/mage/badge.svg?version=0.2.0 "docs")](https://docs.rs/mage)

Mage is an intuitive and powerful template engine.

## [Document]https://docs.rs/mage

## Usage
Add dependency to Cargo.toml

```toml
[dependencies]
mage = "^0.2"
```

In your `main.rs` or `lib.rs`:

```rust
extern crate mage;
```

Supported keywords: `for` `if` `include` `set`

Mage support expression evaluate with crate [`eval`](https://crates.io/crates/eval).
Built-in functions and operators documentation: [`eval`](https://docs.rs/eval).

## License
mage is primarily distributed under the terms of the MIT license.
See [LICENSE](LICENSE) for details.