You can install Ahref using cargo:
cargo add ahref
Here's an example of how to use Ahref lib:
```rust use ahref::Parser;
fn main() { let html = "Test link".tostring(); let mut parser = Parser::new(html); println!("{:?}", parser.parsetags()); }
```
As a result, all "a" tags will be displayed.
text
["<a href='https://github.com/tenqz'>Test link</a>"]
```rust use ahref::Parser;
fn main() { let html = "Test link".tostring(); let mut parser = Parser::new(html); println!("{:?}", parser.parselinks()); }
As a result, all urls will be displayed.
text
["https://github.com/tenqz"]
```