JSFiddle - React, Tailwind, and code Playground
HTML
<div id="target"></div>
CSS
#target {
font-size: xx-large;
font-style: oblique;
font-weight: bold;
}
JavaScript
var t = _.template("Hello <%= name %>");
target.innerHTML = t({ name: "Pepe"});