flowchart.js plugin for GitBook
$ npm install gitbook-plugin-flowchart
book.json add the plugin
{
"plugins": ["flowchart"]
}
book.json add the flowchart.js options
"pluginsConfig": {
"flowchart": {
"line-color": "red"
}
}
put in your book block as
{% flowchart %}
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
{% endflowchart %}
{% flowchart width=770 %}