TPL it's a simple template system in JavaScript with data nesting ability.
<p>User: {user.name}, age:{user.age}, mother: {user.parent.mother}</p>
var data = {
user: {
name: "Alex",
age: 27,
parent: {
mother: "Samantha"
}
}
};
var result = tpl(html, data);
<p>User: Alex, age: 27, mother: Samantha</p>