Angular
- 32 ответа
- 0 вопросов
13
Вклад в тег
.filter('nl2br', ['$sce', function ($sce) {
return function (text) {
return text ? $sce.trustAsHtml(text.replace('<', '«').replace('>', '»').replace(/\n/g, '<br/>')) : '';
};
}]);
<div ng-bind-html="text | nl2br"></div>