@model dynamic @using Umbraco.Web.Templates @if (Model.editor.config.markup != null) { string markup = Model.editor.config.markup.ToString(); var umbracoHelper = new UmbracoHelper(UmbracoContext.Current); markup = markup.Replace("#value#", umbracoHelper.ReplaceLineBreaksForHtml(HttpUtility.HtmlEncode(Model.value.ToString()))); if (Model.editor.config.style != null) { markup = markup.Replace("#style#", Model.editor.config.style.ToString()); } @Html.Raw(markup) } else {
@Model.value
}