diff --git a/source/DasBlog.Web.UI/Models/AdminViewModels/SiteViewModel.cs b/source/DasBlog.Web.UI/Models/AdminViewModels/SiteViewModel.cs
index 4fab60dd..7544cace 100644
--- a/source/DasBlog.Web.UI/Models/AdminViewModels/SiteViewModel.cs
+++ b/source/DasBlog.Web.UI/Models/AdminViewModels/SiteViewModel.cs
@@ -282,10 +282,6 @@ public class SiteViewModel
[Description("Help meet some of the EU General Data Protection Regulation (GDPR) requirements")]
public bool CookieConsentEnabled { get; set; }
- [DisplayName("Double decode")]
- [Description("")]
- public bool EnableDoubleDecode { get; set; }
-
[DisplayName("Default Sources (seperated by semi colon")]
[Description("")]
[StringLength(50, MinimumLength = 1, ErrorMessage = "{0} should be between 1 to 50 characters")]
diff --git a/source/DasBlog.Web.UI/TagHelpers/Post/PostContentTagHelper.cs b/source/DasBlog.Web.UI/TagHelpers/Post/PostContentTagHelper.cs
index 21c09dab..df5bde99 100644
--- a/source/DasBlog.Web.UI/TagHelpers/Post/PostContentTagHelper.cs
+++ b/source/DasBlog.Web.UI/TagHelpers/Post/PostContentTagHelper.cs
@@ -24,12 +24,7 @@ public PostContentTagHelper(IDasBlogSettings dasBlogSettings)
public override void Process(TagHelperContext context, TagHelperOutput output)
{
- var content = Post.Content;
-
- if(dasBlogSettings.SiteConfiguration.EnableDoubleDecode)
- {
- content = HttpUtility.HtmlDecode(Post.Content);
- }
+ var content = HttpUtility.HtmlDecode(Post.Content);
output.TagName = "div";
output.TagMode = TagMode.StartTagAndEndTag;
diff --git a/source/DasBlog.Web.UI/Views/Admin/Settings.cshtml b/source/DasBlog.Web.UI/Views/Admin/Settings.cshtml
index c66dc9ad..740c4bbe 100644
--- a/source/DasBlog.Web.UI/Views/Admin/Settings.cshtml
+++ b/source/DasBlog.Web.UI/Views/Admin/Settings.cshtml
@@ -490,13 +490,6 @@
-
-
- @Html.LabelFor(m => @Model.SiteConfig.EnableDoubleDecode, null, new { @class = "dbc-col-form-label col-3" })
- @Html.CheckBoxFor(m => @Model.SiteConfig.EnableDoubleDecode, new { @class = "dbc-form-check-input" })
-
-
-
Internal