My database stores product information, and a lot of this is organised into lists. I load the data into Angular as $scope.post.
$scope.post
For instance,
As Damax has said here: https://stackoverflow.com/a/11640420/769083
<div ng-bind-html-unsafe="post.size_description"></div>
ngBindHtml worked for me. See more in the docs here: https://docs.angularjs.org/api/ng/directive/ngBindHtml
<div ng-bind-html="post.size_description"></div>