forked from lestrrat-go/libxml2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibxml2.go
More file actions
17 lines (13 loc) · 708 Bytes
/
libxml2.go
File metadata and controls
17 lines (13 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//go:generate go run internal/cmd/genwrapnode/genwrapnode.go -- dom/node_wrap.go
/*
Package libxml2 is an interface to libxml2 library, providing XML and HTML parsers
with DOM interface. The inspiration is Perl5's XML::LibXML module.
This library is still in very early stages of development. API may still change
without notice.
For the time being, the API is being written so that thye are as close as we
can get to DOM Layer 3, but some methods will, for the time being, be punted
and aliases for simpler methods that don't necessarily check for the DOM's
correctness will be used.
Also, the return values are still shaky -- I'm still debating how to handle error cases gracefully.
*/
package libxml2