mirror of
https://github.com/MontFerret/ferret.git
synced 2025-06-23 00:28:10 +02:00
Feature/inner html element child (#82)
* SOme wokrd * Renamed example * Updated example
This commit is contained in:
@ -8,7 +8,7 @@ import (
|
||||
|
||||
/*
|
||||
* Returns an array of inner HTML strings of matched elements.
|
||||
* @param doc (Document) - Parent document.
|
||||
* @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.
|
||||
*/
|
||||
@ -19,7 +19,7 @@ func InnerHTMLAll(_ context.Context, args ...core.Value) (core.Value, error) {
|
||||
return values.None, err
|
||||
}
|
||||
|
||||
err = core.ValidateType(args[0], core.HTMLDocumentType)
|
||||
err = core.ValidateType(args[0], core.HTMLDocumentType, core.HTMLElementType)
|
||||
|
||||
if err != nil {
|
||||
return values.None, err
|
||||
@ -31,7 +31,7 @@ func InnerHTMLAll(_ context.Context, args ...core.Value) (core.Value, error) {
|
||||
return values.None, err
|
||||
}
|
||||
|
||||
doc := args[0].(values.HTMLDocument)
|
||||
doc := args[0].(values.HTMLNode)
|
||||
selector := args[1].(values.String)
|
||||
|
||||
return doc.InnerHTMLBySelectorAll(selector), nil
|
||||
|
Reference in New Issue
Block a user