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

                return {
                    body: lang+"_"+blk.body+"_"+lang,
                    html: false
                };
            }
        }
    }
};