An open API service indexing awesome lists of open source software.

https://github.com/harshdoesdev/supa-html

A Tiny LitHTML Clone
https://github.com/harshdoesdev/supa-html

Last synced: 3 months ago
JSON representation

A Tiny LitHTML Clone

Awesome Lists containing this project

README

        

# SupaHTML
Supercharged HTML Parser

## Usage
```javascript
// const { parseHTML } = require('supa-html');
import { parseHTML } from 'supa-html';

const html = `

Hello world

`;

const tree = parseHTML(html);

console.log(tree);
```