summaryrefslogtreecommitdiffstats
path: root/lib/output/website/index.js
blob: b268eec653e8ef6fc73fff651a698896bd70dd4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var util = require('util');
var FolderOutput = require('../base');

var Theme = require('./theme');

function WebsiteOutput() {
    FolderOutput.apply(this, arguments);
}
util.inherits(WebsiteOutput, FolderOutput);

WebsiteOutput.prototype.name = 'ebook';

// Write a page (parsable file)
WebsiteOutput.prototype.onPage = function(page) {

};

module.exports = WebsiteOutput;