In my angular app, I want to display a value:
<div>{{myValue}}</div>
I also want to make it display "Empty" if the value is empty, like so:
<div>{{myValue || 'Empty'}}</div>
How can I make myValue be formatted normally, but 'Empty' be italicized?
ng-bind-htmldirective if you want to add HTML to the output