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::getatags;

fn main() { let html = "Test link".tostring(); println!("{:?}", geta_tags(&html)) }

```

As a result, all "a" tags will be displayed.