aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/blog.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/blog.js b/lib/blog.js
index 50ebbf2..27a440e 100644
--- a/lib/blog.js
+++ b/lib/blog.js
@@ -81,7 +81,7 @@ module.exports = class Blog {
await this._copyPost(postLocation);
await this._writeMetadata(metadata);
- await this._generate();
+ await this.generate();
}
/**
@@ -100,7 +100,7 @@ module.exports = class Blog {
// Parses markdown for each page, copies assets and generates index.
- async _generate() {
+ async generate() {
internals.debuglog('Generating output');