X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/a9c02cac1fde01ac28dc1241d1e63f85a1ff03a2..6cd62e795e3716aa0cbd2d1ff8c1b3a345803563:/lib/generators/rss.js diff --git a/lib/generators/rss.js b/lib/generators/rss.js index 4ae3925..a46a394 100644 --- a/lib/generators/rss.js +++ b/lib/generators/rss.js @@ -1,10 +1,10 @@ 'use strict'; -const { template, templateSettings } = require('dot'); -const { encodeXML } = require('entities'); -const { readFile, writeFile } = require('fs/promises'); -const { join } = require('path'); -const { debuglog } = require('util'); +import Dot from 'dot'; +import { encodeXML } from 'entities'; +import { readFile, writeFile } from 'fs/promises'; +import { join } from 'path'; +import { debuglog } from 'util'; const internals = { debuglog: debuglog('blog'), @@ -29,7 +29,7 @@ const internals = { * @param {string} target the target directory * @param {Array.} posts the list of posts */ -module.exports = async function RSSGenerator(source, target, posts) { +export default async function RSSGenerator(source, target, posts) { internals.debuglog('Generating RSS'); const feedTarget = join(target, internals.kFeedName); @@ -45,8 +45,8 @@ module.exports = async function RSSGenerator(source, target, posts) { title: internals.extractTitle(post.raw), html: encodeXML(post.html) })); - const feedXml = template(feedTemplate, { - ...templateSettings, + const feedXml = Dot.template(feedTemplate, { + ...Dot.templateSettings, strip: false })({ posts }); await writeFile(feedTarget, feedXml);