I have below table structure and I am trying to bind this table with data returned by API/web service result.
`
Id
Tracking
{{ticket.Id}}
<td>
{{ticket.Tracking}}
</td>
</tr>
</tbody>
</table>
</div>
The field ticket.Tracking is having value "abc <br>xyz<br>test<html<br>". but web page its displaying like below "abc <br>xyz<br>test<html<br>" but I want to render this test like below
abc
xyz
test
html
How can I achieve it in angularJS. Thanks a lots in advance.