// Parses a string which contains a html. func Parse(htm string) (Nodes, error) { n, err := html.Parse(bytes.NewBufferString(htm)) return Nodes{&Node{n}}, err }
// Parse a stream of html. func Parse(r io.Reader) (Nodes, error) { n, err := html.Parse(r) return Nodes{&Node{n}}, err }