UNPKG

hexo-theme-next

Version:

Elegant and powerful theme for Hexo.

20 lines (16 loc) 387 B
/** * mermaid.js | https://theme-next.js.org/docs/tag-plugins/mermaid */ 'use strict'; const { escapeHTML } = require('hexo-util'); module.exports = function(args, content) { // Support mermaid inside backtick code block // Keep the same HTML structure // Fix issue #347 #797 return `<pre> <code class="mermaid"> ${args.join(' ')} ${escapeHTML(content)} </code> </pre>`; };