Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@markuplint/html-parser

Package Overview
Dependencies
Maintainers
1
Versions
170
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@markuplint/html-parser - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1-dev.20220307.0

8

lib/create-tree.d.ts
import type { MLASTNode } from '@markuplint/ml-ast';
export declare function createTree(
rawCode: string,
isFragment: boolean,
offsetOffset: number,
offsetLine: number,
offsetColumn: number,
): MLASTNode[];
export declare function createTree(rawCode: string, isFragment: boolean, offsetOffset: number, offsetLine: number, offsetColumn: number): MLASTNode[];

18

lib/parse-raw-tag.d.ts
import type { MLASTAttr, MLToken } from '@markuplint/ml-ast';
declare type TagTokens = {
tagName: string;
attrs: MLASTAttr[];
selfClosingSolidus: MLToken;
endSpace: MLToken;
tagName: string;
attrs: MLASTAttr[];
selfClosingSolidus: MLToken;
endSpace: MLToken;
};
export default function parseRawTag(
raw: string,
startLine: number,
startCol: number,
startOffset: number,
offsetOffset?: number,
offsetLine?: number,
offsetColumn?: number,
): TagTokens;
export default function parseRawTag(raw: string, startLine: number, startCol: number, startOffset: number, offsetOffset?: number, offsetLine?: number, offsetColumn?: number): TagTokens;
export {};
export interface N {
type: 'text' | 'starttag' | 'endtag' | 'comment' | 'boguscomment';
raw: string;
line: number;
col: number;
type: 'text' | 'starttag' | 'endtag' | 'comment' | 'boguscomment';
raw: string;
line: number;
col: number;
}
export default function tagSplitter(raw: string, line: number, col: number): N[];
{
"name": "@markuplint/html-parser",
"version": "2.0.0",
"version": "2.0.1-dev.20220307.0",
"description": "HTML parser for markuplint",

@@ -23,8 +23,8 @@ "repository": "git@github.com:markuplint/markuplint.git",

"dependencies": {
"@markuplint/ml-ast": "2.0.0",
"@markuplint/parser-utils": "2.0.0",
"@markuplint/ml-ast": "2.0.1-dev.20220307.0",
"@markuplint/parser-utils": "2.0.1-dev.20220307.0",
"parse5": "^6.0.1",
"tslib": "^2.3.1"
},
"gitHead": "de81fc514acdf472f87184e3499e9364258f9b66"
"gitHead": "c0a9d36c32ae278bd2fdb9ec9434fd4af46918c3"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc