###### tags: `example` `フローチャート` # フローチャートテスト > [name=SawayaKento] [time=Fri, Jan 24, 2020 11:32 AM] ## flow ```flow st=>start: Start op=>operation: Some operation cd=>condition: Some condition sb=>subroutine: Some function e=>end: End st->op op->cd cd(no)->e cd(yes)->sb sb->e ``` ```SHELL= st=>start: Start op=>operation: Some operation cd=>condition: Some condition sb=>subroutine: Some function e=>end: End st->op op->cd cd(no)->e cd(yes)->sb sb->e ``` ## GraphViz ```graphviz graph A { a[label = a]; b[label = b]; c[label = c]; a -- b -- c; d -- c; } ``` ```SHELL= graph A { a[label = a]; b[label = b]; c[label = c]; a -- b -- c; d -- c; } ``` ## 参考 [HackMD公式](https://hackmd.io/s/features-jp) [ブログ用の図表を描くのが面倒なのでGraphvizを使っていきたい所存](http://hitoriblog.com/?p=18414)