Excuse my lack of experience with AngularJS.
I'm encountering difficulties when trying to display HTML content in my Angular application!
Here is the partial I am using:
<div ng-app="myGreatApp" ng-repeat="article in articles" >
<div ng-bind-html-unsafe="article.full"></div>
{{article.full}}
</div>
The HTML content is being displayed in an escaped manner using {{article.full}}
, but the div remains empty.
No JavaScript errors are appearing in the console.
Appreciate any help!