diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-10-13 10:56:14 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-10-13 10:56:14 +0200 |
commit | 36785120b1055f65f77361e0529d5d765a8581d1 (patch) | |
tree | f1507e593024431053beac9875caf2d3dfa37668 | |
parent | 26fad5b8888d0cc5ce271abe568ac45640dea96b (diff) | |
download | gitbook-36785120b1055f65f77361e0529d5d765a8581d1.zip gitbook-36785120b1055f65f77361e0529d5d765a8581d1.tar.gz gitbook-36785120b1055f65f77361e0529d5d765a8581d1.tar.bz2 |
Fix default for pdf templates
-rw-r--r-- | lib/generate/config.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/generate/config.js b/lib/generate/config.js index 76b0d79..4d814c8 100644 --- a/lib/generate/config.js +++ b/lib/generate/config.js @@ -84,12 +84,12 @@ var CONFIG = { "top": 36, "bottom": 36 }, - + //Header HTML template. Available variables: _PAGENUM_, _TITLE_, _AUTHOR_ and _SECTION_. - "headerTemplate": null, - + "headerTemplate": "", + //Footer HTML template. Available variables: _PAGENUM_, _TITLE_, _AUTHOR_ and _SECTION_. - "footerTemplate": null + "footerTemplate": "" } }; |