Files
gitbook/lib/template/blocks.js
T
2016-02-14 17:41:55 +01:00

12 lines
284 B
JavaScript

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 replaced by plugins
code: _.identity
};