Section » fieldsets
fieldsets(name) → array
Retrieve fieldsets with the specified name from this current section.
enoimage:
src = red-roses.jpg
image:
src = white-roses.jpg
javascriptconst document = eno.parse(input);
const images = document.fieldsets('image');
images.forEach(image => {
console.log( image.entry('src') );
});
Parameters
nameA string specifying the name of the fieldsets to retrieve.
Return value
An array of Fieldset
s.