Snippet:
<tr ng-repeat="x in orderCsList">
<td class="ctn"><input type="checkbox" ng-model="x.checked"></td>
<td class="ctn">{{ x.wdate }}</td>
<td class="text-left">{{ x.wid }}</td>
<td class="text-left">{{ x.content }}</td>
<td class="text-left">{{ x.suc_yn }}</td>
</tr>
I have a property(x.contents) with the value TEST<br>
TEST. How can I convert it to HTML
?
Present outcome:
TEST`<br>`TEST
Desired outcome:
TEST
TEST