I am writing a list using ng-repeat as follows:
<div ng-repeat="string in MyCtrl.strings">
{{ string }}
</div>
Now, the above code, treat the HTML within the string as plain text.
I have modified it as follows:
<div ng-repeat="string in MyCtrl.strings">
<div ng-include="string"></div>
</div>
But i am getting an error on the console and the div is not showing up any text. "Failed to load resource: the server responded with a status of 404 (Not Found) "
How do i include HTML inside ng-repeat list.