hexo-diagrams-net
Version:
Insert diagrams.net/draw.io diagrams into Hexo sites
22 lines (18 loc) • 405 B
JavaScript
;
function getConfig(hexo) {
const drawioConfig = hexo.config.drawio || {};
const defaultArguments = Object.assign(
{
'highlight': '#0000ff',
'lightbox': "false",
'nav': "true",
'resize': "false",
'toolbar': 'lightbox zoom layers pages',
},
drawioConfig.default_arguments
);
return {
defaultArguments
};
}
module.exports = getConfig;