summaryrefslogtreecommitdiffstats
path: root/test/plugins/blocks/index.js
blob: 91e8b5592d48572b5900da14654e0b87a13044c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
    blocks: {
    	"test": {
    		process: function(args) {
    			return "test"+args.body+"test";
    		}
    	},
    	"test2": {
    		end: "endtest2end",
    		process: function(args) {
    			return "test2"+args.body+"test2";
    		}
    	}
    }
};