Files
gitbook/test/plugins/blocks/index.js
T
2015-01-27 17:07:25 +01:00

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";
}
}
}
};