aboutsummaryrefslogtreecommitdiff
path: root/lib/generators/html.js
diff options
context:
space:
mode:
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);
};