I'm looking for a way to tell Angular to display a value inside an expression that contains markup, and actually use the HTML:
{{ value }}
let value = "<span>foobar</span>";
So, the value variable contains a string with markup, and I want to apply the markup so it is rendered in the page. So if value contained <b>test</b>, then on the page, bold text would appear.
<span>? Or maybe you can play around with*ngIfand create<span>if some statement is true or otherwise create<p>or whatever you want...