mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 21:09:30 +08:00
16 lines
269 B
Text
16 lines
269 B
Text
'use strict';
|
|
|
|
const page = {
|
|
parse: {
|
|
prelude() {
|
|
return this.createSingleNodeList(
|
|
this.SelectorList()
|
|
);
|
|
},
|
|
block() {
|
|
return this.Block(true);
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = page;
|