I have a property in my Model which has string content similar to:
<p>Hello</p>`
Using @Html.Raw(myProperty) outputs to the browser
<p>Hello</p>
When I expect
Hello
I tried doing @Html.Raw(Html.Raw(myProperty)) but this reverted it back to the orginal string.
Is there any way to render this text as expected without resorting to using .Replace("<", "<"), etc?