Source code:
<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) that the value is TEST<br>TEST. How can I "parse" it to HTML?
Actual result:
TEST`<br>`TEST
Expected result:
TESTTEST