1 2 3 4 5 6 7 8 9 10 11 12 13
//! Page metadata extraction module //! //! This module provides efficient page metadata extraction using JavaScript evaluation. //! Ported from citescrape's production-tested page_extractor. pub mod schema; pub mod js_scripts; pub mod extractors; pub mod page_info; // Re-export commonly used types pub use schema::PageMetadata; pub use page_info::{PageInfo, extract_page_info};