edo

Crates.ioedo
lib.rsedo
version0.3.0
sourcesrc
created_at2016-12-24 06:01:40.681859
updated_at2016-12-25 00:15:32.662245
descriptionA super simple templating library for Rust
homepagehttps://github.com/giodamelio/edo
repositoryhttps://github.com/giodamelio/edo
max_upload_size
id7754
size16,349
Gio d'Amelio (giodamelio)

documentation

https://docs.rs/edo

README

Edo

Crates.io Version Build Status Dependency Status

A super simple templating library for Rust.

Documentation

Examples

You can use a simple static replacement.

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.

use edo::Edo;

let mut template = Edo::new("Hello {name}").unwrap();
template.register_handler("name", |_| Ok("World!".to_string()));
let output = template.render();
assert_eq!(output, "Hello World!");

Your handlers can also take arguments (As a Vec<str>).

use edo::Edo;

let mut template = Edo::new("{say_hello(World)}").unwrap();
template.register_handler("say_hello", |args| Ok(format!("Hello {}", args[0])));
let output = template.render();
assert_eq!(output, "Hello World");

License

This code is distributed under the MIT license

Commit count: 26

cargo fmt