UNPKG

@thenja/html-parser

Version:
41 lines 731 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ELEMENT_TYPES = { TAG: "tag", TEXT: "text", COMMENT: "comment" }; exports.EMPTY_TAGS = { "area": 1, "base": 1, "basefont": 1, "br": 1, "col": 1, "frame": 1, "hr": 1, "img": 1, "input": 1, "isindex": 1, "link": 1, "meta": 1, "param": 1, "embed": 1 }; exports.MODE_TYPES = { TEXT: 'text', TAG: 'tag', STYLE: 'style', SCRIPT: 'script' }; exports.TAG_TYPES = { EMPTY: 'empty', DEFAULT: 'default', SCRIPT: 'script', STYLE: 'style', COMMENT: 'comment' }; exports.QUOTE_TYPES = { SINGLE: 1, DOUBLE: 2 }; //# sourceMappingURL=constants.js.map