Within an AngularJS partial I am looping over a list of entries as follows:
<ul class="entries">
<li ng-repeat="entry in entries">
<strong>{{ entry.title }}</strong>
<p>{{ entry.content }}</p>
</li>
</ul>
The content of {{entry.content}}
have some linebreaks which are ignored by AngularJS. How can I make it preserve the linebreaks?