UNPKG

@master/css-server

Version:

Generate Master CSS text from markup on the server

10 lines (9 loc) 222 B
import { type HTMLElement } from 'node-html-parser'; /** * @param html * @returns {classes from html, root element} */ export default function parseHTML(html: string): { classes: string[]; root: HTMLElement; };