diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-10-08 20:58:57 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-10-08 20:58:57 +0200 |
commit | 4ae5b2e05001df9bdf8c5b64f8a82725e14d6414 (patch) | |
tree | 2e4397d33f90ee7bf1034ec4dea1237e611aff36 /lib/configuration.js | |
parent | ce1e0e187339976fc3cae7ef70bcfdd0eaf68981 (diff) | |
parent | 4369bd8f5e39b1b3563e527fb78c16fc3b34b597 (diff) | |
download | gitbook-4ae5b2e05001df9bdf8c5b64f8a82725e14d6414.zip gitbook-4ae5b2e05001df9bdf8c5b64f8a82725e14d6414.tar.gz gitbook-4ae5b2e05001df9bdf8c5b64f8a82725e14d6414.tar.bz2 |
Merge pull request #959 from GitbookIO/improvements/ebooks
Improvements for ebooks
Diffstat (limited to 'lib/configuration.js')
-rw-r--r-- | lib/configuration.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/configuration.js b/lib/configuration.js index 3b6b47b..7488fae 100644 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -1,5 +1,6 @@ var _ = require('lodash'); var Q = require('q'); +var fs = require('fs'); var path = require('path'); var semver = require('semver'); @@ -284,10 +285,10 @@ Configuration.DEFAULT = { }, // Header HTML template. Available variables: _PAGENUM_, _TITLE_, _AUTHOR_ and _SECTION_. - 'headerTemplate': '', + 'headerTemplate': null, // Footer HTML template. Available variables: _PAGENUM_, _TITLE_, _AUTHOR_ and _SECTION_. - 'footerTemplate': '' + 'footerTemplate': null } }; |