From 9e355758760cfa0c3d34759d22875c9d82ddd971 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 20 Mar 2021 23:40:24 +0100 Subject: Add title to html/rss generators --- lib/generators/html.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/generators/html.js') 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); }; -- cgit