JSFiddle - React, Tailwind, and code Playground

by lark

HTML

<script src="https://github.com/jquery/jquery-tmpl/raw/master/jquery.tmpl.js"></script>
<span class="hello"></span>

CSS

.hello {
    font-size: 28px;
    color: #F00;
}

JavaScript

var template = '${stdout}'
  , context = {
        stdout: 'Hello World!'
  };

$.tmpl(template, context).appendTo(".hello");