mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 21:20:42 +00:00
* refactor(web-fetch): move readability extraction to plugin * fix(web-fetch): cache extractor resolution by config * fix(test): remove redundant stat assertions
14 lines
416 B
TypeScript
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";
|