module.exports = { async init($, config) { $(`pre.diagram`).each((idx, elm) => { $(elm).children('svg').each((sidx, svg) => { $(svg).removeAttr('content') }) $(elm).replaceWith($(`
${$(elm).html()}
`)) }) } }