JSFiddle - React, Tailwind, and code Playground
by Dan Shahin
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js"></script>
<div class="content">foo</div>
<script id="post-template" type="text/x-handlebars-template">
<div class="post">id {{id}} : info {{info}}</div>
</script>
JavaScript
var source = $("#post-template").html();
var template = Handlebars.compile(source);
var context = {'id': '123', 'info': '456'};
var html = template(context);
$('div.content').append(html);