Files
goquery/goquery.go
2012-08-29 21:14:23 -04:00

15 lines
464 B
Go

package goquery
// TODO : Benchmarks
// TODO : Ensure no node is added more than once in a selection (especially with Add...)
// TODO : Add the following methods:
// - Closest()
// - Parents()
// - Contains() (static function?)
// - Contents() (similar to Children(), but includes text and comment nodes, so Children() should filter them out)
// - End()
// - Eq()
// - Find() : Complete with Selection object and Node object as selectors
// - Has()
// - Html() ?