I am facing an issue with displaying HTML content containing inline styling in my view. The code I currently have is:
<div ng-repeat="snippet in snippets">
<div ng-bind-html="snippet.content"></div>
</div>
Unfortunately, all of my styling is being removed...
I've come across mentions of using ngBindHtmlUnsafe to address this problem, but I am unable to find any information or reference on it. Simply adding ng-bind-html-unsafe does not render anything.
If anyone has any insights or solutions, I would greatly appreciate the help.