readability
readability copied to clipboard
Port of arc90labs-readability with rust
The docs at https://docs.rs/readability/0.2.0/readability/index.html show zero comments. Could you document at the very least the parts that are most commonly used?
Add reqwest async feature tio the scrape function. Note that this is a breaking change since it changes the default blocking feature and migrate to rust 2021.
To get a better idea of what work is done and todo, we could expose a JS API using this library that matches the original readability's API so that we...
While there is a lot of public API it seems that the core method is [readability::extractor::extract](https://docs.rs/readability/latest/readability/extractor/fn.extract.html) with `scrape` as a small wrapper. However this function makes a lot of assumptions....
Is extracting image nodes not supported or it's the demo that does not display image tags correctly?
Hi, I noticed some html snippets evoke html5ever warnings. After chasing down the cause I found a minimal pattern that reproduces the issue: ```rust let text = String::from("aa"); let mut...