mermaid
使用mermaid标签可以绘制Flowchart(流程图)、Sequence diagram(时序图)、Class Diagram(类别图)、State Diagram(状态图)、Gantt(甘特图)和Pie Chart(圆形图),具体可以查看mermaid文档
示例流程图{% mermaid %}graph TD; A-->B; A-->C; B-->D; C-->D;{% endmermaid %}
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
时序图{% mermaid %}sequenceDiagram participant Alice participant Bob Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fig ...
Hexo
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment






