Ahref
Extract "a" tags from html page
Installation
You can install Ahref using cargo:
cargo add ahref
Usage
Here's an example of how to use Ahref lib:
use Parser;
As a result, all "a" tags will be displayed.
["<a href='https://github.com/tenqz'>Test link</a>"]
use Parser;
As a result, all urls will be displayed.
["https://github.com/tenqz"]