JSFiddle - React, Tailwind, and code Playground

by BraveOstrich

HTML

<script src="http://code.angularjs.org/1.0.0/angular-1.0.0.js" ng:autobind></script>
<div ng:app="myApp">
<div ng:controller="Tester">
        <div class="boxes">
            <div ng:repeat="item in items" ng-bind-html-unsafe="item.html">
               
            </div>
        </div>
</div>

JavaScript

var myApp = angular.module('myApp', []);

function Tester($scope) {
    $scope.items = [{html:"<span>1</span>"},{html:"<h3>some text</h3>"}];
}