summaryrefslogtreecommitdiffstats
path: root/test/plugins/highlight/index.js
blob: 01202f27e23bb8459244bb8a458dc087dcc71f31 (plain)
1
2
3
4
5
6
7
8
9
module.exports = {
    blocks: {
        "code": {
            process: function(blk) {
                return "code_"+blk.body+"_code";
            }
        }
    }
};