diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-02-12 21:25:43 +0100 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-02-12 21:25:43 +0100 |
commit | 0d966fe19738089607de3927694ac5f2bd41f03f (patch) | |
tree | 92d4d3711459249e48dfc708870afff42367a3fc /lib/output/website/index.js | |
parent | 82f94b010f1d77957c9d1b0967dcdd5eafe73c39 (diff) | |
download | gitbook-0d966fe19738089607de3927694ac5f2bd41f03f.zip gitbook-0d966fe19738089607de3927694ac5f2bd41f03f.tar.gz gitbook-0d966fe19738089607de3927694ac5f2bd41f03f.tar.bz2 |
Separate output in FolderOutput and base
Diffstat (limited to 'lib/output/website/index.js')
-rw-r--r-- | lib/output/website/index.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/output/website/index.js b/lib/output/website/index.js index 2b7db73..35e81c2 100644 --- a/lib/output/website/index.js +++ b/lib/output/website/index.js @@ -6,14 +6,6 @@ function WebsiteOutput() { } util.inherits(WebsiteOutput, Output); -// Copy an asset file -WebsiteOutput.prototype.writeAsset = function(filename) { - return this.copyFile( - this.book.resolve(filename), - filename - ); -}; - // Write a page (parsable file) WebsiteOutput.prototype.writePage = function(page) { |