Serea

Playground

Flow chart

Syntax

Every line represents a relation between two nodes as:FROM LINK TOwhereFROMandTOcan be defined either as:ID[LABEL]or just as:LABEL.

Labels need to be defined only once.

This:

A[Alice] -> B[Bob]
B -> A

is equivalent to:

Alice -> Bob
Bob -> Alice

Both will result in:

AliceBob
LINK

can be a line, dashed or dotted, with or without arrow.

Alice -> Bob
AliceBob
Alice - Bob
AliceBob
Alice --> Bob
AliceBob
Alice -- Bob
AliceBob
Alice ..> Bob
AliceBob
Alice .. Bob
AliceBob

The only configuration is dir, the direction of the graph. It defaults to TB (top to bottom).

dir: TB Alice -> Bob
AliceBob
dir: BT Alice -> Bob
AliceBob
dir: LR Alice -> Bob
AliceBob
dir: RL Alice -> Bob
AliceBob