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

17 lines
269 B
JavaScript

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