I have the following:
<div class="columns large-12">
<p ng-repeat="desc in joinUs.description">{{desc}}</p>
</div>
How can I display html content inside the repeated paragraph? Basically I want to repeat:
<p ng-bind-html="{{desc}}"></p>
joinUs.description is an array of strings, some containing anchor tags.
Edit
I have tried this the following (as suggested angular.js ng-repeat li items with html content) but the html is still shown as plain text.
<div class="row">
<div class="columns large-12">
<p ng-repeat="desc in joinUs.description" ng-bind-html-unsafe="desc">{{desc}}</p>
</div>
</div>