diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-01-14 22:19:40 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-01-14 22:19:40 +0100 |
commit | 3382f1b0840a7759508357acf88d770f2c5bcaf2 (patch) | |
tree | 56f1041ae643392e44a6053b4354152a9bd3a7b5 /lib/generate/page | |
parent | 7d90cd2a9ea729566118f617f0d5674a02d04652 (diff) | |
download | gitbook-3382f1b0840a7759508357acf88d770f2c5bcaf2.zip gitbook-3382f1b0840a7759508357acf88d770f2c5bcaf2.tar.gz gitbook-3382f1b0840a7759508357acf88d770f2c5bcaf2.tar.bz2 |
Include styles in website format
Diffstat (limited to 'lib/generate/page')
-rw-r--r-- | lib/generate/page/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/generate/page/index.js b/lib/generate/page/index.js index a926d13..c5f9420 100644 --- a/lib/generate/page/index.js +++ b/lib/generate/page/index.js @@ -11,6 +11,8 @@ var BaseGenerator = require("../site"); var Generator = function() { BaseGenerator.apply(this, arguments); + this.styles = ["ebook"]; + // Base for assets in plugins this.pluginAssetsBase = "ebook"; @@ -49,7 +51,7 @@ Generator.prototype.finish = function() { var output = path.join(this.options.output, "index.html"); var progress = parse.progress(this.options.navigation, "README.md"); - + return Q() // Write table of contents |