webforai
TypeScript icon, indicating that this package has built-in type declarations

1.2.2 • Public • Published

Web for AI

LOGO

A library that provides a web interface for AI

Features

  • Ultra-precise HTML2Markdown conversion
  • Ultra-precise Markdown segmentation based on AST
  • Ultra-precise HTML retrieval functions using headless browsers
  • The core functionality is edge-native (runs on Cloudflare Workers!!!)

Demo

There is a demo API for Html2Markdown deployed on CloudflareWorker. Please access the following link

Quick Start

Just install and execute scripts

pnpm i webforai playwright
import { promises as fs } from "fs";
import { htmlToMarkdown, htmlToMdast } from "webforai";
import { loadHtml } from "webforai/loaders/playwright";

const url = "https://www.npmjs.com/package/webforai";
const html = await loadHtml(url);

const markdown = htmlToMarkdown(html, { solveLinks: url });

await fs.writeFile("output.md", markdown);

other examples are in examples

Usage

Main Functions

htmlToMarkdown(html: string, options?: HtmlToMarkdownOptions): string
Convert HTML to Markdown. By default, unnecessary HTML is excluded and processed. If solveLinks is specified, the relative links in the Mdast will be resolved. This function just calls htmlToMdast and mdastToMarkdown in that order internally.

htmlToMdast(html: string, options?: HtmlToMdastOptions): Mdast
This project uses Hast and Mdast as defined by syntax-tree internally. This function converts HTML to Mdast, an intermediate representation, which is required when using mdastSplitter, etc.

mdastToMarkdown(mdast: Mdast | RootContent[], options?: { solveLinks?: string }): string
Convert Mdast to Markdown. If solveLinks is specified, the relative links in the Mdast will be resolved.

Loader Functions

loadHtml(url: string, options?: LoadHtmlOptions): Promise<string>
Load HTML from the specified URL. This function uses Playwright internally.

Early Users

Voice Genius - Explanatory video generation by AI

by @moons14

AI can be used to automatically generate highly accurate commentary videos. Supports conversations and presentations using synthesized voice, embedding of images in videos, etc.

Package Sidebar

Install

npm i webforai

Weekly Downloads

183

Version

1.2.2

License

MIT

Unpacked Size

93.1 kB

Total Files

84

Last publish

Collaborators

  • inaridiy