Message Sequence Charts
Engimo supports embedding simple message sequence charts, with help of js-sequence-diagrams.
A simple sequence chart like this one:
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
can be embedded with enabling these chart types on a page with
---
msc: true
---
and then creating code block with msc
type:
```msc
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
```