1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-03-05 15:16:07 +02:00

14 lines
307 B
Go
Raw Normal View History

2018-09-18 16:42:38 -04:00
package html
import "github.com/MontFerret/ferret/pkg/runtime/core"
func NewLib() map[string]core.Function {
return map[string]core.Function{
"DOCUMENT": Document,
"DOCUMENT_PARSE": DocumentParse,
"ELEMENT": Element,
"ELEMENTS": Elements,
2018-09-23 04:33:20 -04:00
"WAIT_ELEMENT": WaitElement,
2018-09-18 16:42:38 -04:00
}
}