'use strict'; /* global hexo */ const mermaid = require('./lib/mermaid.js'); hexo.config.mermaid = Object.assign({ mmdcPath: 'mmdc', timeout: 5000, theme: 'default', width: 800, height: 600, format: 'svg', background: 'transparent', scale: 1 }, hexo.config.mermaid); hexo.extend.tag.register('mermaid', mermaid(hexo.config.mermaid), { ends: true });