Golang x/net: Difference between revisions

From wikinotes
(Created page with "The official library for parsing HTML.<br> It is not shipped with go's standard library, but it is maintained by the go developers. = Documentation = <blockquote> {| class="wikitable" |- | official docs || https://pkg.go.dev/golang.org/x/net/html |- |} </blockquote><!-- Documentation -->")
 
No edit summary
Line 10: Line 10:
|}
|}
</blockquote><!-- Documentation -->
</blockquote><!-- Documentation -->
= Install =
<blockquote>
<syntaxhighlight lang="go">
go get golang.org/x/net
</syntaxhighlight>
</blockquote><!-- Install -->

Revision as of 12:41, 10 July 2022

The official library for parsing HTML.
It is not shipped with go's standard library, but it is maintained by the go developers.

Documentation

official docs https://pkg.go.dev/golang.org/x/net/html

Install

go get golang.org/x/net