Skip to content

Instantly share code, notes, and snippets.

@sitefinitySDK
Created October 25, 2024 23:15
Show Gist options
  • Save sitefinitySDK/65de20f76ab5b657996a0d59938849ae to your computer and use it in GitHub Desktop.
Save sitefinitySDK/65de20f76ab5b657996a0d59938849ae to your computer and use it in GitHub Desktop.
@using Progress.Sitefinity.AspNetCore.TagHelpers;
@using Progress.Sitefinity.AspNetCore.Mvc.Rendering;
@model Renderer.ViewModels.ExtendedContentBlockViewModel
<sf-wrapper tag-name="@Model.TagName" class="@Model.WrapperCssClass clearfix">
<h1>Original</h1>
@{
@Html.HtmlSanitize(@Model.Content)
}
<h1>Modified</h1>
@{
@Html.HtmlSanitize(@Model.ModifiedContent)
}
</sf-wrapper>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment