posthtml-parser
Advanced tools
Comparing version 0.8.4 to 0.8.5
@@ -0,3 +1,10 @@ | ||
## <small>0.8.5 (2021-05-06)</small> | ||
* perf: content two dimensional array ([8373816](https://github.com/posthtml/posthtml-parser/commit/8373816)) | ||
## <small>0.8.4 (2021-05-06)</small> | ||
* 0.8.4 ([aaa0b3e](https://github.com/posthtml/posthtml-parser/commit/aaa0b3e)) | ||
* perf: attr value as number ([3d08ec5](https://github.com/posthtml/posthtml-parser/commit/3d08ec5)) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "posthtml-parser", | ||
"version": "0.8.4", | ||
"version": "0.8.5", | ||
"description": "Parse HTML/XML to PostHTMLTree", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -19,3 +19,3 @@ import {ParserOptions} from 'htmlparser2'; | ||
export type Attributes = Record<string, string | number | boolean>; | ||
export type Content = NodeText | Node[]; | ||
export type Content = NodeText | Node[] | Node[][]; | ||
@@ -22,0 +22,0 @@ export type NodeText = string | number; |
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
35899