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.

10 lines
272 B

  1. module.exports = {
  2. async init($, config) {
  3. $(`pre.diagram`).each((idx, elm) => {
  4. $(elm).children('svg').each((sidx, svg) => {
  5. $(svg).removeAttr('content')
  6. })
  7. $(elm).replaceWith($(`<div class="diagram">${$(elm).html()}</div>`))
  8. })
  9. }
  10. }