X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/5f31ea34aea76b8357913abd003bddb0f47f4dab..36a4680d18de012e2e5c732f9db161dafa884344:/lib/generators/txt.js diff --git a/lib/generators/txt.js b/lib/generators/txt.js index af5ec9c..c3d7778 100644 --- a/lib/generators/txt.js +++ b/lib/generators/txt.js @@ -1,9 +1,7 @@ -'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 +17,7 @@ const internals = { * @param {string} target the target directory * @param {Array.} posts the list of posts */ -module.exports = async function TXTGenerator(source, target, posts) { +export default async function TXTGenerator(source, target, posts) { internals.debuglog('Generating TXT'); const textTarget = join(target, internals.kTextName); @@ -29,10 +27,9 @@ module.exports = async function TXTGenerator(source, target, posts) { const textTemplate = await readFile(textLocation, { encoding: 'utf8' }); internals.debuglog('Writing TXT'); - const text = template(textTemplate, { - ...templateSettings, + const text = Dot.template(textTemplate, { + ...Dot.templateSettings, strip: false })({ posts }); await writeFile(textTarget, text); -}; - +}