Skip to content

Commit

Permalink
Added decode escapes option (madskristensen#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
programcsharp authored and rwasef1830 committed Aug 4, 2021
1 parent a50e5f7 commit 6962faa
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 6962faa

Please sign in to comment.