hexo-theme-even icon indicating copy to clipboard operation
hexo-theme-even copied to clipboard

是否有 mermaid 支持?

Open lucmann opened this issue 5 months ago • 1 comments

描述

不知道是网络原因,还是其它问题,mermaid diagram 有时渲染得出来,有时却出不来(同一个 diagram)

image

主题配置

mermaid:
  version: "11.2.1"
  enable: true
  theme: forest
  options:
    startOnload: true

mermaid.swig

{%- if theme.mermaid.enable -%}
  <script src='https://unpkg.com/mermaid@{{ theme.mermaid.version }}/dist/mermaid.min.js'></script>
  <script>
    if (window.mermaid) {
      mermaid.initialize({{ JSON.stringify(theme.mermaid.options) }});    
    }
  </script>
{%- endif -%}

lucmann avatar Sep 20 '24 08:09 lucmann