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:

```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"] ```