gitbook-plugin-flowchart

1.1.0 • Public • Published

gitbook-plugin-flowchart

NPM

flowchart.js plugin for GitBook

Installation

$ npm install gitbook-plugin-flowchart

book.json add the plugin

{
  "plugins": ["flowchart"]
}

Configuration

book.json add the flowchart.js options

"pluginsConfig": {
  "flowchart": {
    "line-color": "red"
  }
}

Usage

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 %}

Extend the width

{% flowchart width=770 %}

Package Sidebar

Install

npm i gitbook-plugin-flowchart

Weekly Downloads

0

Version

1.1.0

License

MIT

Last publish

Collaborators

  • midnightsuyama