From 19c2357c04615650a27a7fdeb886d46c9eb1733c Mon Sep 17 00:00:00 2001 From: FrigaT Date: Sun, 28 Dec 2025 23:33:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D0=B7=20html=20v1=20=D1=83=D0=B1=D0=B0?= =?UTF-8?q?=D1=80=D0=B0=D0=BD=D0=B0=20=D0=BC=D0=B8=D0=BD=D0=B8=D1=84=D0=B8?= =?UTF-8?q?=D0=BA=D0=B0=D1=86=D0=B8=D1=8F=20(=D0=B2=D0=BE=D0=B7=D0=B2?= =?UTF-8?q?=D1=80=D0=B0=D1=89=D0=B5=D0=BD=D0=BE=20=D0=BA=20=D1=81=D1=82?= =?UTF-8?q?=D0=BE=D0=BA=D1=83)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Reporters/Formatters/Html/v1/HtmlReportFormatter_v1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }