list of html elements that can have the name tag */ public const NAME_ELEMENTS = [ 'button', 'fieldset', 'form', 'iframe', 'input', 'map', 'meta', 'object', 'output', 'param', 'select', 'textarea', ]; /** @var array options key entries to be skipped in build */ public const SKIP_OPTIONS = [ 'id', 'name', 'class', ]; /** @var array html elements that don't need to be closed */ public const NO_CLOSE = [ 'input', 'br', 'img', 'hr', 'area', 'col', 'keygen', 'wbr', 'track', 'source', 'param', 'command', // only in header 'base', 'meta', 'link', 'embed', ]; /** @var array invalid tags, not allowed in body */ public const NOT_IN_BODY_ALLOWED = [ 'base', 'meta', 'link', 'embed', // not sure ]; } // __END__