WebMarkupMin.Core.GenericHtmlMinifier.CanMinifyWhitespace C# (CSharp) Метод

CanMinifyWhitespace() приватный статический Метод

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
Результат bool
        private static bool CanMinifyWhitespace(HtmlTag tag)
        {
            return !_tagsWithNotRemovableWhitespace.Contains(tag.NameInLowercase);
        }