mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 08:05:19 +00:00
15 lines
296 B
JavaScript
15 lines
296 B
JavaScript
var Immutable = require('immutable');
|
|
|
|
/*
|
|
List of default plugins for all books,
|
|
default plugins should be installed in node dependencies of GitBook
|
|
*/
|
|
module.exports = Immutable.List([
|
|
'highlight',
|
|
'search',
|
|
'lunr',
|
|
'sharing',
|
|
'fontsettings',
|
|
'theme-default'
|
|
]);
|