Files
openclaw/src/plugin-sdk/web-content-extractor.ts
Vincent Koc 86099ec62a refactor(web-fetch): move readability extraction to plugin
* refactor(web-fetch): move readability extraction to plugin

* fix(web-fetch): cache extractor resolution by config

* fix(test): remove redundant stat assertions
2026-04-24 13:34:37 -07:00

14 lines
416 B
TypeScript

export type {
WebContentExtractionRequest,
WebContentExtractionResult,
WebContentExtractorPlugin,
WebContentExtractMode,
} from "../plugins/web-content-extractor-types.js";
export {
extractBasicHtmlContent,
htmlToMarkdown,
markdownToText,
normalizeWhitespace,
} from "../agents/tools/web-fetch-utils.js";
export { sanitizeHtml, stripInvisibleUnicode } from "../agents/tools/web-fetch-visibility.js";