Posts How to draw in markdown
Post
Cancel

How to draw in markdown

How to draw diagrams using markdown?

Simple Sequence Diagram

sequenceDiagram
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>end

st->op->cond
cond(yes)->e
cond(no)->op

Complex Sequence Diagram

  sequenceDiagram
    Alice->>Bob: Hello Bob, how are you?
    alt is sick
    Bob->>Alice: Not so good :(
    else is well
    Bob->>Alice: Feeling fresh like a daisy
    end
    opt Extra response
    Bob->>Alice: Thanks for asking
    end
This post is licensed under CC BY 4.0 by the author.

Trending Tags

Contents

-

-

Comments powered by Disqus.

Trending Tags