Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "html2ast", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Convert html to ast", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.umd.js", |
# html2ast | ||
Convert html to ast. | ||
`html2ast` is a tool that converts HTML into an abstract syntax tree (AST), suitable for scenarios where HTML structure needs to be parsed and processed. | ||
@@ -11,4 +11,6 @@ ## install | ||
## use | ||
## 使用示例 | ||
### Node.js | ||
```javascript | ||
@@ -30,2 +32,22 @@ import {parse} from 'html2ast' | ||
console.log(tree) | ||
``` | ||
## umd | ||
```javascript | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<script src="https://unpkg.com/html2ast@latest/dist/index.iife.js"></script> | ||
<script> | ||
const ast = html2ast.parse('<div><p>hello world</p></div>'); | ||
console.log(ast); | ||
</script> | ||
</body> | ||
</html> | ||
``` |
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
27971
51