X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/db7b464d701c7d48777ddd38a10f69093cd5442c..10a76a5bf0a9d051aa9432566088034c5ced714b:/lib/generators/html.js diff --git a/lib/generators/html.js b/lib/generators/html.js index ba2676c..2004696 100644 --- a/lib/generators/html.js +++ b/lib/generators/html.js @@ -1,9 +1,7 @@ -'use strict'; - -const { template } = 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 +17,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,7 +27,9 @@ 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 = Dot.template(indexTemplate, { + ...Dot.templateSettings, + strip: false + })({ posts }); await writeFile(indexTarget, indexHtml); -}; - +}