mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
12 lines
282 B
JavaScript
12 lines
282 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 extent by plugins
|
|
code: _.identity
|
|
};
|