mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 14:09:14 +08:00
12 lines
232 B
Text
12 lines
232 B
Text
export default {
|
|
parse: {
|
|
prelude() {
|
|
return this.createSingleNodeList(
|
|
this.SelectorList()
|
|
);
|
|
},
|
|
block() {
|
|
return this.Block(true);
|
|
}
|
|
}
|
|
};
|