@markuplint/html-parser
Advanced tools
Comparing version 1.0.0-alpha.17 to 1.0.0-alpha.18
@@ -1,2 +0,2 @@ | ||
import { MLASTAttr } from '@markuplint/ml-ast'; | ||
export default function attrTokenizer(raw: string, line: number, col: number, startOffset: number): MLASTAttr; | ||
import { MLASTHTMLAttr } from '@markuplint/ml-ast'; | ||
export default function attrTokenizer(raw: string, line: number, col: number, startOffset: number): MLASTHTMLAttr; |
@@ -59,2 +59,3 @@ "use strict"; | ||
return { | ||
type: 'html-attr', | ||
uuid: uuid_1.v4(), | ||
@@ -61,0 +62,0 @@ raw: attrToken.raw, |
@@ -5,1 +5,4 @@ export { default as isDocumentFragment } from './is-document-fragment'; | ||
export { flattenNodes } from './flatten-nodes'; | ||
export { default as getEndCol } from './get-end-col'; | ||
export { default as getEndLine } from './get-end-line'; | ||
export { walk, Walker } from './walk'; |
@@ -11,1 +11,7 @@ "use strict"; | ||
Object.defineProperty(exports, "flattenNodes", { enumerable: true, get: function () { return flatten_nodes_1.flattenNodes; } }); | ||
var get_end_col_1 = require("./get-end-col"); | ||
Object.defineProperty(exports, "getEndCol", { enumerable: true, get: function () { return get_end_col_1.default; } }); | ||
var get_end_line_1 = require("./get-end-line"); | ||
Object.defineProperty(exports, "getEndLine", { enumerable: true, get: function () { return get_end_line_1.default; } }); | ||
var walk_1 = require("./walk"); | ||
Object.defineProperty(exports, "walk", { enumerable: true, get: function () { return walk_1.walk; } }); |
@@ -172,2 +172,4 @@ "use strict"; | ||
isGhost: false, | ||
tagOpenChar: '</', | ||
tagCloseChar: '>', | ||
}; | ||
@@ -196,2 +198,4 @@ } | ||
isGhost: false, | ||
tagOpenChar: '<', | ||
tagCloseChar: '>', | ||
}; | ||
@@ -198,0 +202,0 @@ if (endTag) { |
{ | ||
"name": "@markuplint/html-parser", | ||
"version": "1.0.0-alpha.17", | ||
"version": "1.0.0-alpha.18", | ||
"description": "HTML parser for markuplint", | ||
@@ -24,7 +24,7 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
"dependencies": { | ||
"@markuplint/ml-ast": "^1.0.0-alpha.9", | ||
"@markuplint/ml-ast": "^1.0.0-alpha.10", | ||
"parse5": "^6.0.0", | ||
"uuid": "^8.1.0" | ||
}, | ||
"gitHead": "2b9b334ad921139c38f19fbbd9bd9d81c425be44" | ||
"gitHead": "ed31cf1cd1f2ef96484e23d1dcf504a0d958c5f1" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
979
228810