reasonkit-web 0.1.7

High-performance MCP server for browser automation, web capture, and content extraction. Rust-powered CDP client for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Content extraction module
//!
//! This module provides intelligent content extraction from web pages,
//! including main content, metadata, and link extraction.

pub mod content;
pub mod links;
pub mod metadata;

pub use content::{ContentExtractor, ExtractedContent};
pub use links::{ExtractedLink, LinkExtractor, LinkType};
pub use metadata::{MetadataExtractor, OpenGraphData, PageMetadata, TwitterCardData};