In the database I\'m saving input from a textarea, where you can add breaks. But how to show them in a Angular view? For PHP this is nl2br().
Like
Googling angularjs nl2br yielded this result:
AngularJS - Remove \n from data
Namely the last answer which demonstrates how to replace new lines with using a filter. Combine that with ng-bind-html, as the unsafe version might not be currently available. You should probably convert the line breaks to when inserting them to database(makes more sense to me).