I have to render a string (item.tabs.review.content), that is parsed into HTML using $sce.trustAsHtml.
The main issue I am having is that within the string are references to an array in the item object (item.tabs.review.images).
.material(ng-bind-html='item.tabs.review.content')
The issue that I am having is that once the HTML is rendered in the browser, the double curly braces are being ignored and are not being populated by the object?
<h1>TEsting</h1>
<img ng-src='data{{item.tabs.review.images[0].filetype}};base64{{item.tabs.review.images[0].base64}}'>
Added a plunker. http://plnkr.co/edit/Jkrx3SxNjWmHPQnKbnFY?p=preview