My controller :
LandingApp.controller('LandingCtrl2', function($scope){
$scope.articles = [
{
'imageSrc' : IMG_DIR + 'spec9.jpg',
'title' : 'Stencils',
'description': 'Plastic or thin metal stencils.<br/>100% Custom made'
}
];
});
When I use ng repeat (....article in articles....) {{article.description}}, I receive
... stencils.<br/>100% ....
. However, I need a way to add line breaks or other HTML tags. How can I resolve this issue?