hexo-tag-mermaid/index.js
2025-08-20 20:12:00 +08:00

19 lines
360 B
JavaScript

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