site/node_modules/html-void-elements/index.js

28 lines
316 B
JavaScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* List of HTML void tag names.
*
* @type {Array<string>}
*/
export const htmlVoidElements = [
'area',
'base',
'basefont',
'bgsound',
'br',
'col',
'command',
'embed',
'frame',
'hr',
'image',
'img',
'input',
'keygen',
'link',
'meta',
'param',
'source',
'track',
'wbr'
]