UNPKG

markdown-crawler

Version:

A powerful web crawler that extracts content from web pages and converts them to clean Markdown format, with support for code blocks and GitHub Flavored Markdown

3 lines (2 loc) 192 B
export declare function extract_from_url(page: string): Promise<[title: string, markdown: string]>; export declare function extract_from_html(html: string): [title: string, markdown: string];