https://github.com/inkdropapp/inkdrop-flowchart
A plugin for drawing flowchart
https://github.com/inkdropapp/inkdrop-flowchart
Last synced: about 1 year ago
JSON representation
A plugin for drawing flowchart
- Host: GitHub
- URL: https://github.com/inkdropapp/inkdrop-flowchart
- Owner: inkdropapp
- License: mit
- Created: 2016-10-23T02:17:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T17:21:03.000Z (over 3 years ago)
- Last Synced: 2025-03-24T06:45:18.668Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://www.inkdrop.app/
- Size: 648 KB
- Stars: 18
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README-mobile.md
- License: LICENSE.md
Awesome Lists containing this project
README
It adds a support for drawing flowchart using [flowchart.js](http://flowchart.js.org/) in Markdown code block.
## Usage
```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
```
It will be rendered as:
