Mermaid plugin for GitBook
How to install it?
$ npm install gitbook-plugin-mermaid-compat{
"plugins": ["mermaid-compat"],
"pluginsConfig": {
"mermaid-compat": {
"theme": "forest" // here to change the mermaid theme
}
}
}How to use it?
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;Last updated