diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-02-15 14:07:26 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-02-15 14:07:26 +0100 |
commit | 354fe1274242bef87b739dbe43cdb634ea573662 (patch) | |
tree | d4a7c1f48878ba4eb6793535cc42a516a143bc0e /lib/output/ebook.js | |
parent | 1b19c6660303cb6ce98ac0ad76580f66b52985f1 (diff) | |
download | gitbook-354fe1274242bef87b739dbe43cdb634ea573662.zip gitbook-354fe1274242bef87b739dbe43cdb634ea573662.tar.gz gitbook-354fe1274242bef87b739dbe43cdb634ea573662.tar.bz2 |
Fix addBlock for template engine
Add test for code block
Diffstat (limited to 'lib/output/ebook.js')
-rw-r--r-- | lib/output/ebook.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/output/ebook.js b/lib/output/ebook.js index b968006..b4cd550 100644 --- a/lib/output/ebook.js +++ b/lib/output/ebook.js @@ -10,5 +10,7 @@ function EbookOutput() { util.inherits(EbookOutput, AssetsInliner); util.inherits(EbookOutput, WebsiteOutput); +EbookOutput.prototype.name = 'ebook'; + module.exports = EbookOutput; |