adrai / flowchart.js

Draws simple SVG flow chart diagrams from textual representation of the diagram
http://flowchart.js.org/
MIT License
8.49k stars 1.21k forks source link

A side effect of PR#191 #210

Open brynne8 opened 3 years ago

brynne8 commented 3 years ago
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...

st->op1->cond
cond(yes)->io->e
cond(no)->op1

@robertleeplummerjr @adrai The basic example was rendered as follows after PR#191 was merged. The 'no' condition draws a line to the top-right instead of right direction, even if I explicitly specify the direction.

Screenshot_2020-09-06 Demo page(1)