I'm binding a span to a property on my model that ends up being populated with HTML e.g., "Word<br/>break". When it gets rendered, it is rendered just like that, so it displays the <br/> inline in the text with no effect. Is there a way to tell the binding to render it in raw form so it is displayed on two lines?
<span id="rawSpan" data-bind="text: rawTextDisplay"></span>
I was hoping to find some option like data-raw-text='true' but apparently my google-fu needs some work. Thanks.