flowchart TB %% ['triangle', 'slopedRect', 'tiltedCylinder', 'flippedTriangle', 'hourglass']; node_0 noed_00 --> node_1@{ shape: triangle, label: "This is **bold**
and strong" }@ style node_1 fill:#f9f,stroke:#333,stroke-width:4px node_2@{ shape: slopedRect }@ node_3@{ shape: tiltedCylinder }@ style node_0 fill:#f9f,stroke:#333,stroke-width:4px style node_3 fill:#f9f,stroke:#333,stroke-width:4px classDef customClazz fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5 node_2:::customClazz node_00:::customClazz
flowchart RL n0 --> n00@{ shape: taggedRect, label: 'new shape' }@ style n00 fill:#f9f,stroke:#333,stroke-width:4px n1 --> n11@{ shape: multiRect, label: 'new shape' }@ style n11 fill:#f9f,stroke:#333,stroke-width:4px"
flowchart %% without shape or label node_0 %% with shape but no label node_3@{ shape: triangle }@ %% with shape and label node_1@{ shape: triangle, label: "This is a label" }@ %% with shape and long label node_2@{ shape: triangle, label: "This is a long long long long long long label" }@ %% with shape and label && htmlLabel true node_4@{ shape: triangle, label: "This is a label", htmlLabel: true }@ %% with shape and label && htmlLabel false node_5@{ shape: triangle, label: "This is a label", htmlLabel: false }@ %% with shape and label handDrawn look ON node_6@{ shape: triangle, label: "This is a label", handDrawn: true }@
flowchart A{"This is a label"}@{ shape: document, icon: car, labelAlt: "This is another label **bit**", path: [1,2,3] }@ D@{ shape: roundedRect, icon: car }@ A --> B & D A@{ label: "This is the final label {}" icon: car }@ --> B A(This is a label)