summaryrefslogtreecommitdiffstats
path: root/test/plugins/replace_highlight/index.js
blob: 25f96426e62db93dcd86d7fb81443a6e59c9f517 (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    blocks: {
        "code": {
            process: function(blk) {
                var lang = blk.kwargs.language || 'code';

                return lang+"_"+blk.body+"_"+lang;
            }
        }
    }
};