Angular: Empty Fiddle

http://angularjs.org/

HTML

<div ng-controller="appCtrl">
    <div ng-bind-html="url"></div>
</div>

JavaScript

var myApp = angular.module('myApp', []);
myApp.controller('appCtrl', function ($scope, $sce) {
    $scope.url = html;
});


var html = '<a href="http://google.com">Google</a>';