JSFiddle - React, Tailwind, and code Playground
by willslab
HTML
<script src="http://rawgithub.com/janl/mustache.js/master/mustache.js"></script>
<div class="my-block" id="myBlock"></div>
<script type="text/template" id="myTemplate">
<h1>{{ title }}</h1>
<p>{{ description }}</p>
</script>
JavaScript
$(function() {
var data = {
title: 'Hello',
description: 'World'
};
var template = $('#myTemplate').html();
var html = Mustache.render(template, data);
$('#myBlock').html(html);
});