mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
05a7582bba
* SOme wokrd * Renamed example * Updated example
39 lines
946 B
Go
39 lines
946 B
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
)
|
|
|
|
/*
|
|
* Returns an array of inner HTML strings of matched elements.
|
|
* @param doc (HTMLDocument|HTMLElement) - Parent document or element.
|
|
* @param selector (String) - String of CSS selector.
|
|
* @returns (String) - An array of inner HTML strings if any element found, otherwise empty array.
|
|
*/
|
|
func InnerHTMLAll(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 2)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
err = core.ValidateType(args[1], core.StringType)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc := args[0].(values.HTMLNode)
|
|
selector := args[1].(values.String)
|
|
|
|
return doc.InnerHTMLBySelectorAll(selector), nil
|
|
}
|