aboutsummaryrefslogtreecommitdiff
path: root/lib/generators/html.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2021-03-20 23:40:24 +0100
committerRuben Beltran del Rio <ruben@unlimited.pizza>2021-03-20 23:40:24 +0100
commit9e355758760cfa0c3d34759d22875c9d82ddd971 (patch)
tree5159301f70a1e52d696683643d2046260f1a931c /lib/generators/html.js
parent4aa5845077d5cb5153b8095726d747bd1eabb48c (diff)
Add title to html/rss generators
Diffstat (limited to 'lib/generators/html.js')
-rw-r--r--lib/generators/html.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/generators/html.js b/lib/generators/html.js
index ba2676c..9579cb2 100644
--- a/lib/generators/html.js
+++ b/lib/generators/html.js
@@ -1,6 +1,6 @@
'use strict';
-const { template } = require('dot');
+const { template, templateSettings } = require('dot');
const { readFile, writeFile } = require('fs/promises');
const { join } = require('path');
const { debuglog } = require('util');
@@ -29,7 +29,10 @@ module.exports = async function HTMLGenerator(source, target, posts) {
const indexTemplate = await readFile(indexLocation, { encoding: 'utf8' });
internals.debuglog('Writing HTML');
- const indexHtml = template(indexTemplate)({ posts });
+ const indexHtml = template(indexTemplate, {
+ ...templateSettings,
+ strip: false
+ })({ posts });
await writeFile(indexTarget, indexHtml);
};