# Edo
[](https://crates.io/crates/edo) [](https://travis-ci.org/giodamelio/edo) [](https://dependencyci.com/github/giodamelio/edo)
A super simple templating library for Rust.
[Documentation](https://docs.rs/edo)
# Examples
You can use a simple static replacement.
```rust
use edo::Edo;
let mut template = Edo::new("Hello {name}").unwrap();
template.register_static("name", "World!");
let output = template.render();
assert_eq!(output, "Hello World!");
```
You can also use a handler function to calculate the value.
```rust
use edo::Edo;
let mut template = Edo::new("Hello {name}").unwrap();
This code is distributed under the MIT license