summaryrefslogtreecommitdiffstats
path: root/lib/output/website/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r--lib/output/website/index.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/output/website/index.js b/lib/output/website/index.js
index b268eec..7322a57 100644
--- a/lib/output/website/index.js
+++ b/lib/output/website/index.js
@@ -1,14 +1,14 @@
var util = require('util');
-var FolderOutput = require('../base');
+var ConrefsLoader = require('../conrefs');
var Theme = require('./theme');
function WebsiteOutput() {
- FolderOutput.apply(this, arguments);
+ ConrefsLoader.apply(this, arguments);
}
-util.inherits(WebsiteOutput, FolderOutput);
+util.inherits(WebsiteOutput, ConrefsLoader);
-WebsiteOutput.prototype.name = 'ebook';
+WebsiteOutput.prototype.name = 'website';
// Write a page (parsable file)
WebsiteOutput.prototype.onPage = function(page) {