19 lines
360 B
JavaScript
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 }); |