2025-03-29 15:51:03 -04:00

13 lines
232 B
JavaScript

export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.SelectorList()
);
},
block() {
return this.Block(true);
}
}
};