2025-04-02 06:50:39 -04:00

15 lines
209 B
JavaScript

'use strict';
const page = {
parse: {
prelude() {
return this.createSingleNodeList(this.SelectorList());
},
block() {
return this.Block(true);
},
},
};
module.exports = page;