Created
October 25, 2024 23:15
-
-
Save sitefinitySDK/65de20f76ab5b657996a0d59938849ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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