"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.changelog = exports.changelog_entry = exports.img = void 0; const constants_1 = require("../../constants"); const js_beautify_1 = require("js-beautify"); exports.img = (file, label, id = '') => { return `
${label}
`; }; exports.changelog_entry = (e) => { return `
${e.date} 
${e.msg}
`; }; exports.changelog = (log) => { return js_beautify_1.html_beautify(log.map(exports.changelog_entry).join('
')); }; //# sourceMappingURL=html.js.map