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