Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inkdropapp/inkdrop-flowchart
A plugin for drawing flowchart
https://github.com/inkdropapp/inkdrop-flowchart
Last synced: 20 days 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 (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T17:21:03.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T15:12:16.369Z (9 months ago)
- Language: JavaScript
- Homepage: https://www.inkdrop.app/
- Size: 648 KB
- Stars: 18
- Watchers: 3
- 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:
![](https://github.com/inkdropapp/inkdrop-flowchart/raw/master/docs/images/example-01.png)