Jaml is a simple JavaScript library which makes HTML generation easy and pleasurable.
Instead of magic tags, Jaml is pure JS. It looks like:
function(data) {
h3(data.message);
}
Jaml is integrated into jQuery.View so you can use it like:
$("#foo").html('//app/views/template.jaml',{});
For more info check out: