JSFiddle - React, Tailwind, and code Playground

by RoryOSiochain

HTML

<script src="https://raw.github.com/pure/pure/master/libs/pure.js"></script>
<body>
    <div class="template">Hello <a></a>

    </div>
</body>

JavaScript

var jsonData = {
    who: 'BeeBole!',
    site: 'http://beebole.com'
},
//template commands
directive = {
    'a': 'who',
    'a@href': 'site'
};
//select the template and transform it
$('div.template').render(jsonData, directive);