├── .editorconfig ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── index.d.ts ├── index.js ├── lib └── index.js ├── license ├── package.json ├── readme.md ├── test ├── fixtures │ ├── attributes │ │ ├── index.html │ │ └── index.json │ ├── doctype-nameless │ │ ├── index.html │ │ └── index.json │ ├── doctype-quirksmode-ibm │ │ ├── index.html │ │ └── index.json │ ├── doctype-quirksmode-xml │ │ ├── index.html │ │ └── index.json │ ├── doctype │ │ ├── index.html │ │ └── index.json │ ├── element-void-close │ │ ├── index.html │ │ └── index.json │ ├── element-void │ │ ├── index.html │ │ └── index.json │ ├── simple │ │ ├── index.html │ │ └── index.json │ ├── svg │ │ ├── index.html │ │ └── index.json │ └── template │ │ ├── index.html │ │ └── index.json └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | *.html 3 | *.md 4 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/lib/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/attributes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/attributes/index.html -------------------------------------------------------------------------------- /test/fixtures/attributes/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/attributes/index.json -------------------------------------------------------------------------------- /test/fixtures/doctype-nameless/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/doctype-nameless/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/doctype-nameless/index.json -------------------------------------------------------------------------------- /test/fixtures/doctype-quirksmode-ibm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/doctype-quirksmode-ibm/index.html -------------------------------------------------------------------------------- /test/fixtures/doctype-quirksmode-ibm/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/doctype-quirksmode-ibm/index.json -------------------------------------------------------------------------------- /test/fixtures/doctype-quirksmode-xml/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/doctype-quirksmode-xml/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/doctype-quirksmode-xml/index.json -------------------------------------------------------------------------------- /test/fixtures/doctype/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/doctype/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/doctype/index.json -------------------------------------------------------------------------------- /test/fixtures/element-void-close/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/element-void-close/index.html -------------------------------------------------------------------------------- /test/fixtures/element-void-close/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/element-void-close/index.json -------------------------------------------------------------------------------- /test/fixtures/element-void/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/element-void/index.html -------------------------------------------------------------------------------- /test/fixtures/element-void/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/element-void/index.json -------------------------------------------------------------------------------- /test/fixtures/simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/simple/index.html -------------------------------------------------------------------------------- /test/fixtures/simple/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/simple/index.json -------------------------------------------------------------------------------- /test/fixtures/svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/svg/index.html -------------------------------------------------------------------------------- /test/fixtures/svg/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/svg/index.json -------------------------------------------------------------------------------- /test/fixtures/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/template/index.html -------------------------------------------------------------------------------- /test/fixtures/template/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/fixtures/template/index.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syntax-tree/hast-util-from-parse5/HEAD/tsconfig.json --------------------------------------------------------------------------------