Mermaid使用

Flowchart

基本语法

flowchart LR/TD
id[Content]
item[Line1
Line2
Line3]
id --> item
flowchart TD
    id[Content]
    item[Line1
    Line2
    Line3]
    id --> item
flowchart TD
item{Relationship}
id(Entity)

id -- Text --> item
flowchart TD;
    item{Relationship};
    id(Entity);

    id -- Text --> item;