I'm trying to print out content in an object, and some of those properties have 
 tags in them which is why I can't just randomly create new elements in js because I don't know which properties will have 
 tags. But they're not rendering in my browser. I feel like I'm missing a very simple concept here... An example is provided below
JSFiddle: http://jsfiddle.net/tvzgypd6/3/
Here is just an example of an object that won't display properly when I use ng-repeat in angular
$scope.objs = [
    {a : 'test 1 <br> test 1'},
    {a : 'test 2 '},
    {a : 'test 3'},
    {a : "test 4 \n test 4"},
    {a : 'test 5 \n test 5'},
]
 
     
    