mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 16:39:31 +08:00
12 lines
254 B
Text
12 lines
254 B
Text
module.exports = {
|
|
parse: {
|
|
prelude: function() {
|
|
return this.createSingleNodeList(
|
|
this.SelectorList()
|
|
);
|
|
},
|
|
block: function() {
|
|
return this.Block(true);
|
|
}
|
|
}
|
|
};
|