I am struggling with rendering a variable containing HTML content in my webpage. Despite setting it up correctly, the variable displays as plain text instead of rendered HTML. Can someone provide assistance with this issue?
Here is the snippet of my code:
//contoller.js
$scope.message = '<b><i>result has been saved successfully.</i></b>';
//demo.html
<p ng-bind="message"></p>