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) }