learn and share notes on atproto (wip) 馃
malfestio.stormlightlabs.org/
readability
solid
axum
atproto
srs
1//! Content extraction using XPath rules and generic algorithms
2
3pub mod generic;
4pub mod scoring;
5pub mod xpath;
6
7pub use generic::{ExtractedContent, GenericExtractor};
8pub use scoring::{
9 ContentScore, calculate_class_weight, calculate_link_density, is_unlikely_candidate, is_viable_candidate,
10};
11pub use xpath::XPathExtractor;