I have a Model with property Content which contains HTML string.
var model = new { Content = ... }
Razor.Parse(templateBody, model)
How can I render this string using standalone Razor.
I tried:
@(new HtmlString(Model.Content))
and also
@(HttpUtility.HtmlDecode(Model.Content))
Model.Content renders always HTML-escaped.