{{ revision.title }}
The title outputs fine, but the content - does
I know it's an older question, but you can also trust the value using $sce in your controller:
$sce
$scope.revision.content = $sce.trustAsHtml($scope.revision.content);
After that, ng-bind-html will work.
ng-bind-html