UNPKG

very-small-parser

Version:

A very small Markdown, HTML, and CSS parser.

6 lines (5 loc) 268 B
import type { IToken } from '../types'; import type * as html from './types'; export declare const toMdast0: (node: html.THtmlToken) => IToken; export declare const fixupMdast: (node: IToken) => IToken; export declare const toMdast: (node: html.THtmlToken) => IToken;