mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 09:58:24 -04:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
module.exports = {
|
|
parse: {
|
|
prelude: function() {
|
|
return this.createSingleNodeList(
|
|
this.SelectorList()
|
|
);
|
|
},
|
|
block: function() {
|
|
return this.Block(true);
|
|
}
|
|
}
|
|
};
|