I'm getting a html with angular content from a service, the content is something like that
<div>{{ @event.dateBegin | stringToDate }}</div>
the service is something like
$scope.setContext = function() {
$http.get(service).success(function(response) {
$scope.content = response;
});
the content div is
<div class="span9" ng-bind-html-unsafe="content"></div>
and for result I got the correct html formmed div, but the part {{ }} dosen't work,I agree angular-sanitize but dosen't work too