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