In normal asp.net MVC if I wanted to include custom html in the Validation summary that was placed there by the controller or other upstream processes and display it in Razor I would simply do something like:
@Html.Raw(HttpUtility.HtmlDecode(Html.ValidationSummary().ToHtmlString()))
in order to get the html decoded. This no longer seems to work in Asp.Net core. How can I achieve the same result in .net core 2.1?