From 6cd62e795e3716aa0cbd2d1ff8c1b3a345803563 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 14 Feb 2024 16:58:56 +0100 Subject: Use modules, use XDG dirs --- lib/generators/html.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/generators/html.js') diff --git a/lib/generators/html.js b/lib/generators/html.js index 9579cb2..f7c7966 100644 --- a/lib/generators/html.js +++ b/lib/generators/html.js @@ -1,9 +1,9 @@ 'use strict'; -const { template, templateSettings } = require('dot'); -const { readFile, writeFile } = require('fs/promises'); -const { join } = require('path'); -const { debuglog } = require('util'); +import Dot from 'dot'; +import { readFile, writeFile } from 'fs/promises'; +import { join } from 'path'; +import { debuglog } from 'util'; const internals = { debuglog: debuglog('blog'), @@ -19,7 +19,7 @@ const internals = { * @param {string} target the target directory * @param {Array.} posts the list of posts */ -module.exports = async function HTMLGenerator(source, target, posts) { +export default async function HTMLGenerator(source, target, posts) { internals.debuglog('Generating HTML'); const indexTarget = join(target, internals.kIndexName); @@ -29,8 +29,8 @@ module.exports = async function HTMLGenerator(source, target, posts) { const indexTemplate = await readFile(indexLocation, { encoding: 'utf8' }); internals.debuglog('Writing HTML'); - const indexHtml = template(indexTemplate, { - ...templateSettings, + const indexHtml = Dot.template(indexTemplate, { + ...Dot.templateSettings, strip: false })({ posts }); await writeFile(indexTarget, indexHtml); -- cgit