16 lines
477 B
JavaScript
16 lines
477 B
JavaScript
const hastToHTML = require('hast-util-to-html');
|
|
const mdastToHast = require('mdast-util-to-hast');
|
|
const { root } = require('mdast-builder');
|
|
|
|
function mdastToHTML(nodes) {
|
|
if (!Array.isArray(nodes))
|
|
throw Error('mdastToHTML expects an array argument');
|
|
// - the 'nodes' are children, so first need embedding in a parent
|
|
|
|
return hastToHTML(mdastToHast(root(nodes), { allowDangerousHtml: true }), {
|
|
allowDangerousHtml: true
|
|
});
|
|
}
|
|
|
|
module.exports = mdastToHTML;
|