diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-04 14:40:27 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-04 14:40:27 -0700 |
commit | b3adedb468231e1a8497607ceb7455d58037c2c4 (patch) | |
tree | 44ef8c3e2ca6b82e18cd295f2da9368a22246ece /lib/generate/index.js | |
parent | 026e4362d825f004c4eb9a6471dc5bb91bbac198 (diff) | |
download | gitbook-b3adedb468231e1a8497607ceb7455d58037c2c4.zip gitbook-b3adedb468231e1a8497607ceb7455d58037c2c4.tar.gz gitbook-b3adedb468231e1a8497607ceb7455d58037c2c4.tar.bz2 |
Add base for generating single page html
Diffstat (limited to 'lib/generate/index.js')
-rw-r--r-- | lib/generate/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/generate/index.js b/lib/generate/index.js index 9dcf409..4ed9f08 100644 --- a/lib/generate/index.js +++ b/lib/generate/index.js @@ -30,7 +30,10 @@ var generate = function(options) { // Origin github repository id github: null, - githubHost: 'https://github.com/' + githubHost: 'https://github.com/', + + // Theming + theme: path.resolve(__dirname, '../../theme') }); if (!options.github || !options.title || !options.input || !options.output) { |