WebMarkupMin.Core.GenericHtmlMinifier.CanMinifyWhitespace C# (CSharp) Method

CanMinifyWhitespace() private static method

Checks whether to minify whitespaces in text content of tag
private static CanMinifyWhitespace ( WebMarkupMin.Core.Parsers.HtmlTag tag ) : bool
tag WebMarkupMin.Core.Parsers.HtmlTag Tag
return bool
        private static bool CanMinifyWhitespace(HtmlTag tag)
        {
            return !_tagsWithNotRemovableWhitespace.Contains(tag.NameInLowercase);
        }