I am trying create superscript html in my angular
$scope.Volume = 'm<sup>3</sup>';
I always get html like this
<div class="ng-binding">Volume<br>(m<sup>3</sup>)</div>
Becuase of above html generated, it alwyas shows m<sup>3</sup> on render page rather than desired output i.e. m superscript 3.
How i can use html in angular controller?