net/html is an **HTML Parser** written in pure V. ## Usage ```v oksyntax import net.html fn main() { doc := html.parse('

Hello world!

') tag := doc.get_tag('h1')[0] //

Hello world!

println(tag.name) // h1 println(tag.content) // Hello world! println(tag.attributes) // {'class':'title'} println(tag.str()) //

Hello world!

} ``` More examples found on [`parser_test.v`](parser_test.v) and [`html_test.v`](html_test.v)