Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zapisanchez committed Nov 24, 2023
1 parent 44d59d7 commit b52ca1b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions libxml2.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
//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

import (
Expand Down

0 comments on commit b52ca1b

Please sign in to comment.