I have the following template:
<ion-view view-title="Playlist">
<div class="list list-inset">
<div class="item item-divider item-text-wrap">
{{post.titulo}}
</div>
<div class="item">
<img src="{{post.image}}" width="100%" />
</div>
<div class="item item-divider" style="font-size:14px;font-weight:normal;text-align:right">
{{post.fecha}} - By: {{post.autor}}
</div>
<div class="item item-text-wrap">
{{ post.contenido }}
</div>
</div>
The question is that 'post.contenido' has HTML that I wish to be displayed as it should but it only show the HTML tags and text.
What can I do to render such content?
Kind regards.