Have a trouble with data mapping if used partials.
It can be illustrated on expamle from your README.md
var partial = '<li class="partial"></li>';
var base = '<div><h1 class="foo"></h1><ul class="menu"></ul></div>';
var baseData = { foo: 'bar' };
var mapping = Plates.Map();
mapping.class('menu').append(partial);
console.log(Plates.bind(base, baseData, mapping));
Results is:
<div><h1 class="foo"></h1><ul class="menu"><li class="partial"></li></ul></div>
foo = 'bar' was not rendered!
Have a trouble with data mapping if used partials.
It can be illustrated on expamle from your
README.mdResults is:
foo = 'bar'was not rendered!