Hi,
Is there any support for markdown flowcharts/diagrams/uml?
Example:
Pipeline Flow
-------------
```flow
st=>start: scm checkout
op=>operation: read plugin file
op2=>operation: download plugins
op3=>operation: tar ./build/grafana-dashboards
cond=>condition: file empty
e=>end: push tar to bucket
st->op->cond->op2->op3->e
cond(yes)->op3
cond(no)->op2