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

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

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

};

module.exports = WebsiteOutput;