この方法でレンダリングしている場合、生のhtmlをレンダリングし、かみそりテンプレートでのエスケープを防ぐ方法:
var templateService = new TemplateService();
templateService.Parse(templateSource, model, new DynamicViewBag(), templatePath);
および templateSource には以下が含まれます。
<html>
@MvcHtmlString.Create(this.Model.RenderHead())
<body>
...
問題は、かみそりが @MvcHtmlString.Create(this.Model.RenderHead()) のすべての html タグをエスケープしたことです。テンプレート コンテキストに HtmlHelper がないため、Html.Raw を使用できません。