JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular-sanitize.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
    <h1 ng-bind-html="page.title"></h1>
    <div ng-bind-html="page.content"></div>
</div>

JavaScript

angular.module('myApp', ['ngSanitize'])
.controller('myCtrl', function ($scope) {
    $scope.page = {
      "title":"Getting Started",
      "content":"<img ng-src='images/pageone-snorkeler.png' width='150' height='107' alt='Snorkeler' /><p>Getting Started...... and a lot of other html in here...</p>"
   };
});