Совсем недавно открыл для себя интересный шаблонизатор под названием PURE.

Им удобно пользоваться, у него хороший сайт, а также поддержка самых разных JavaScript-библиотек (Prototype, jQuery, MooTools, Sizzle, скоро Dojo).
<table id="players1" class="players 1">
 <thead>
  <tr><th class="player">Player</th></tr>
 </thead>
 <tbody>
  <tr class="context">
   <td class="player context">Chloe</td>
  </tr>
 </tbody>
</table>


* This source code was highlighted with Source Code Highlighter.
var context = ["Alice Keasler", "Charles LeGrand", "Gary Bitemning", "Helen Moren"];
$('#players1').autoRender(context);


* This source code was highlighted with Source Code Highlighter.