I have an application with an angular frontend and C# backend. I'm receiving this rich text from the backend of my application:
<b>Hello <span style="font-weight:normal"> world </span></b>
What gets displayed is " Hello world "
What I want to be displayed is " Hello world "
The desired behaviour is that the styling of the span doesn't get overwritten. This codepen example shows the desired behaviour, but it is frontend ONLY: https://codepen.io/david-lo/pen/rNVOEbY
What am I missing?
"Hello world"
` – Husna Feb 13 '20 at 09:41