diff --git a/SQLLinter/Infrastructure/Reporters/Formatters/Html/v1/HtmlReportFormatter_v1.cs b/SQLLinter/Infrastructure/Reporters/Formatters/Html/v1/HtmlReportFormatter_v1.cs index bf0bbd5..32073e2 100644 --- a/SQLLinter/Infrastructure/Reporters/Formatters/Html/v1/HtmlReportFormatter_v1.cs +++ b/SQLLinter/Infrastructure/Reporters/Formatters/Html/v1/HtmlReportFormatter_v1.cs @@ -143,6 +143,6 @@ public class HtmlReportFormatter : IReportFormatter sb.AppendLine(""); sb.AppendLine(""); - return HtmlMinifier.MinifyHtml(sb.ToString()); + return sb.ToString(); } }