Skip to content

Commit

Permalink
Added decode escapes option (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
programcsharp committed Jul 7, 2021
1 parent e6edb78 commit 65b3223
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/BundlerMinifier.Core/Minify/CssOptions.cs
Expand Up @@ -9,6 +9,7 @@ public static CssSettings GetSettings(Bundle bundle)
{
CssSettings settings = new CssSettings();
settings.TermSemicolons = GetValue(bundle, "termSemicolons") == "True";
settings.DecodeEscapes = GetValue(bundle, "decodeEscapes", "True") == "True";

string cssComment = GetValue(bundle, "commentMode");

Expand Down

0 comments on commit 65b3223

Please sign in to comment.