summaryrefslogtreecommitdiffstats
path: root/lib/blocks.js
blob: 92097a7072ad0a19292895096c70dc71f2527221 (plain)
1
2
3
4
5
6
7
8
9
10
11
var _ = require('lodash');

module.exports = {
    // Return non-parsed html
    // since blocks are by default non-parsable, a simple identity method works fine
    html: _.identity,

    // Highlight a code block
    // This block can be extent by plugins
    code: _.identity
};