Skip to content
This repository has been archived by the owner on Mar 30, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (19 loc) · 432 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 432 Bytes

Hexo plugin for rendering mermaid diagrams by puppeteer.

Thanks to mermaid.cli

This is my first time to write nodejs package, you can contract me if there are some things wrong.

  • mermaid 9.1.7
  • @fortawesome/fontawesome-free 5.7.0

Install:

npm i hexo-mermaid-diagrams

{% mermaid %}
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
{% endmermaid %}