link_scraper/lib.rs
1//! This Crate's main feature are the `scrape`-functions of the different Modules.
2//!
3//! You can use those functions to extract Links and related information from a file of any supported format.
4//!
5//! Please refer to the git-projects README.md for known issues and further information.
6
7#[cfg(feature = "any_format")]
8/// Use only if you're not sure what format your file will be.
9pub mod any_format_scraper;
10/// Contains format-specific scrape-functions. Prefer over [`any_format_scraper`].
11pub mod formats;
12/// Helper functions
13pub mod helpers;