How to replace html characters in json with html elements in angularjs/ ionic?

I have a {{jobData.description}} that returns a json that looks like this:

how can change it to make it look like html?

use ng-bind-html as

< div ng-bind-html="{{jobData.description}}" > < /div>