You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/server/modules/rendering/html-core/renderer.js

20 lines
391 B

const _ = require('lodash')
const cheerio = require('cheerio')
module.exports = {
async render() {
const $ = cheerio.load(this.input)
if ($.root().children().length < 1) {
return ''
}
for (let child of this.children) {
const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
renderer.init($, child.config)
}
return $.html()
}
}