JSFiddle - React, Tailwind, and code Playground

by Mansfield

HTML

<div class="post-content" ng-controller="MyCtrl">
    <span ng-bind-html="html"></span>
    {{html}}wat
</div>

JavaScript

var myApp = angular.module('myApp');

function MyCtrl($scope) {
    $scope.html="<p>markup</p>";   
}