Jade.Parser.Nodes.TagNode.isSelfClosing C# (CSharp) Method

isSelfClosing() public method

public isSelfClosing ( JadeTemplate template ) : bool
template JadeTemplate
return bool
        public bool isSelfClosing(JadeTemplate template)
        {
            return !template.isXml()
                && Array.FindIndex(selfClosingTags, s => s == name) >= 0;
        }

Same methods

TagNode::isSelfClosing ( ) : bool