kitamura 0.1.1

HTML templating engine
Documentation
1
2
3
4
5
6
7
8
9
use std::collections::HashMap;

mod ast;
mod template;
mod token;

pub fn render_template(html: String, parameters: HashMap<String, serde_json::Value>) -> String {
    template::render_template(html, parameters)
}