mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-23 11:03:39 +00:00
15 lines
273 B
JavaScript
15 lines
273 B
JavaScript
module.exports = {
|
|
blocks: {
|
|
"test": {
|
|
process: function(args) {
|
|
return "test"+args.body+"test";
|
|
}
|
|
},
|
|
"test2": {
|
|
end: "endtest2end",
|
|
process: function(args) {
|
|
return "test2"+args.body+"test2";
|
|
}
|
|
}
|
|
}
|
|
}; |