I have the code in html and ts file. Content in variable Description is <div>aaaa</div><div>bbbb</div><div>cccc</div>
Now the result show
aaaabbbbcccc
How to make it show in 3 line
aaaa
bbbb
cccc
OR show with space
aaaa bbbb cccc
html file code
<span>
{{getHtml(Description)}}
</span>
ts file code
getHtml(html) {
var div = document.createElement("div");
div.innerHTML = html;
return div.innerHTML
}
Try to use the element pre:
<pre>
{{YOUR_VALUE}}
</pre>