How do i treat angularjs $scope object as html in div. My html code is
{{topicDesc}}and am passing topicDesc using
var topicdesc1 = "Please ensure you read through <a href="http://adajprod.nce.amadeus.net/ABCHelp/pages/faq_home.html" target="_blank">ABC FAQ </a> and <a href="http://adajprod.nce.amadeus.net/ABCHelp/pages/help_home.html" target="_blank">ABC Help</a> before opening a request."`
$scope.topicDesc = topicDesc1;
The scope.topicdesc is treated as string and it prints the same exact sentence on webpage. How do i solve this issue? Please help as am a fresher.