summaryrefslogtreecommitdiffstats
path: root/lib/output
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output')
-rw-r--r--lib/output/ebook.js2
-rw-r--r--lib/output/website/index.js2
2 files changed, 4 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;
diff --git a/lib/output/website/index.js b/lib/output/website/index.js
index a35cafe..b268eec 100644
--- a/lib/output/website/index.js
+++ b/lib/output/website/index.js
@@ -8,6 +8,8 @@ function WebsiteOutput() {
}
util.inherits(WebsiteOutput, FolderOutput);
+WebsiteOutput.prototype.name = 'ebook';
+
// Write a page (parsable file)
WebsiteOutput.prototype.onPage = function(page) {