mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
feat: 置頂圖標改為在標題左側 feat: 可配置打賞按鈕的文字 feat: 側邊欄增加 系列文章顯示 feat: 增加 series 系列文章 標籤外掛 feat: 移除 addthis 分享 improvement: 代碼優化 improvement: tabs 標籤外掛的回到頂部箭頭位置調整 improvement: 更新 plugin.yml
18 lines
344 B
JavaScript
18 lines
344 B
JavaScript
/**
|
|
* Butterfly
|
|
* mermaid
|
|
* https://github.com/mermaid-js/mermaid
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const { escapeHTML } = require('hexo-util')
|
|
|
|
const mermaid = (args, content) => {
|
|
return `<div class="mermaid-wrap"><pre class="mermaid-src" hidden>
|
|
${escapeHTML(content)}
|
|
</pre></div>`
|
|
}
|
|
|
|
hexo.extend.tag.register('mermaid', mermaid, { ends: true })
|