1 2 3 4 5 6 7 8 9 10 11
//! Scraping implementations //! //! Contains the actual scraping logic: //! - Readability algorithm wrapper //! - Fallback text extraction //! - Asset downloading (feature-gated) #[cfg(any(feature = "images", feature = "documents"))] pub mod asset_download; pub mod fallback; pub mod readability;