11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
module.exports = {
|
|
async init($, config) {
|
|
$(`pre.diagram`).each((idx, elm) => {
|
|
$(elm).children('svg').each((sidx, svg) => {
|
|
$(svg).removeAttr('content')
|
|
})
|
|
$(elm).replaceWith($(`<div class="diagram">${$(elm).html()}</div>`))
|
|
})
|
|
}
|
|
}
|