You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that with `--coords` enabled, the grid-coords shown show the starting location of the coord, not the center of the coord. This is why `(1,0)` is next to `(0,0)` instead of in the center of the `A` node.
362
506
507
+
## Supported Diagram Types
508
+
509
+
### Graphs / Flowcharts ✅
510
+
-[x] Graph directions (`graph LR` and `graph TD`)
511
+
-[x] Labelled edges (like `A -->|label| B`)
512
+
-[x] Multiple arrows on one line (like `A --> B --> C`)
513
+
-[x]`A & B` syntax
514
+
-[x]`classDef` and `class` for colored output
515
+
-[x] Prevent arrows overlapping nodes
516
+
-[ ]`subgraph` support
517
+
-[ ] Shapes other than rectangles
518
+
-[ ] Diagonal arrows
519
+
520
+
### Sequence Diagrams ✅
521
+
-[x] Basic message syntax (`A->>B: message`)
522
+
-[x] Solid arrows (`->>`) and dotted arrows (`-->>`)
-[x] Participant aliases (`participant A as Alice`)
526
+
-[x] Unicode support (emojis, CJK characters, etc.)
527
+
-[x] Both ASCII and Unicode rendering modes
528
+
-[ ] Activation boxes
529
+
-[ ] Notes (`Note left of Alice: text`)
530
+
-[ ] Loops, alt, opt blocks
531
+
363
532
## TODOs
364
533
365
534
The baseline components for Mermaid work, but there are a lot of things that are not supported yet. Here's a list of things that are not yet supported:
@@ -381,3 +550,13 @@ The baseline components for Mermaid work, but there are a lot of things that are
381
550
-[ ] Diagonal arrows
382
551
-[ ] Place nodes in a more compact way
383
552
-[ ] Prevent rendering more than X characters wide (like default 80 for terminal width)
553
+
554
+
### Sequence Diagram Improvements
555
+
556
+
-[ ] Activation boxes (activate/deactivate)
557
+
-[ ] Notes (`Note left of Alice: text`)
558
+
-[ ] Loops, alt, opt, and par blocks
559
+
560
+
### General
561
+
562
+
-[ ] Support for more diagram types (class diagrams, state diagrams, etc.)
0 commit comments