ChrAlpha / hexo-theme-cards

Another Simple & Swift theme for Hexo
https://theme-cards.ichr.me
GNU General Public License v3.0
421 stars 47 forks source link

添加 mermaid 支持 #97

Closed hayschan closed 3 years ago

hayschan commented 3 years ago

好像要在 footer 添加内容,参考

{% 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 %}
ChrAlpha commented 3 years ago

已在 878ee0e 中尝试添加支持。

由于我没有使用 Mermaid Disgrams 的经历,故这次更新没有本地测试,还请切换至 canary 分支获取最新版本以测试。