【AngularJS】文字列を全くエスケープさせずに表示する。

Angular1.2まではng-bind-html-unsafeがあったけど1.3からは削除されているので、$sceを用いて出力を行う。

// $sceサービスが注入されているのは前提
var text = '<hr>';
$scope.text = $sce.trustAsHtml(text);

これでOK。