@using Orchard.Core.Common.Models @using Orchard.Services @{ var htmlFilterProcessor = WorkContext.Resolve(); var bodyPart = Model.Content.BodyPart as BodyPart; var bodyText = htmlFilterProcessor.ProcessFilters(bodyPart.Text, bodyPart.GetFlavor(), bodyPart); } @Html.Raw(bodyText)