Files

13 lines
241 B
JavaScript
Raw Permalink Normal View History

2025-03-07 22:27:18 +08:00
export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.Scope()
);
},
block(nested = false) {
return this.Block(nested);
}
}
};