summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2014-04-19 18:00:24 +0200
committerSamy Pessé <samypesse@gmail.com>2014-04-19 18:00:24 +0200
commitcf51772f541ae09265f37ff0662da529ca857d4f (patch)
tree0af7b3c0f93359d66622e8bbc78c318c0dbfaa9d
parentcc8516df8315875adc9403881cddaf8ba06fd411 (diff)
downloadgitbook-cf51772f541ae09265f37ff0662da529ca857d4f.zip
gitbook-cf51772f541ae09265f37ff0662da529ca857d4f.tar.gz
gitbook-cf51772f541ae09265f37ff0662da529ca857d4f.tar.bz2
Add command line option "plugins"
-rw-r--r--README.md2
-rw-r--r--bin/build.js2
-rwxr-xr-xbin/gitbook.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index ba8ca1f..52da645 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ Options for commands `build` and `serve` are:
-o, --output <directory> Path to output directory, defaults to ./_book
-f, --format <name> Change generation format, defaults to site, availables are: site, page, pdf, json
--githubHost <url> The url of the github host (defaults to https://github.com/)
---theme <path> Path to theme directory
+--plugins <plugins> List of plugins to use separated by ":"
```
You can publish your books to our index by visiting [GitBook.io](http://www.gitbook.io)
diff --git a/bin/build.js b/bin/build.js
index 3059dde..53593cb 100644
--- a/bin/build.js
+++ b/bin/build.js
@@ -33,7 +33,7 @@ var makeBuildFunc = function(converter) {
github: options.github || repoID,
githubHost: options.githubHost,
generator: options.format,
- theme: options.theme
+ plugins: options.plugins
})
);
})
diff --git a/bin/gitbook.js b/bin/gitbook.js
index f46d4d1..d254c10 100755
--- a/bin/gitbook.js
+++ b/bin/gitbook.js
@@ -25,7 +25,7 @@ var buildCommand = function(command) {
.option('-i, --intro <intro>', 'Description of the book to generate, default is extracted from readme')
.option('-g, --github <repo_path>', 'ID of github repo like : username/repo')
.option('--githubHost <url>', 'The url of the github host (defaults to https://github.com/')
- .option('--theme <path>', 'Path to theme directory');
+ .option('--plugins <plugins>', 'List of plugins to use separated by ":"');
};
buildCommand(prog.command('build [source_dir]'))