2019-11-18 19:18:57 +00:00
|
|
|
---
|
|
|
|
title: "JS Sequence Diagram support"
|
|
|
|
date: 2019-11-18T12:00:06+09:00
|
|
|
|
description: "Generates UML sequence diagrams from simple text"
|
2020-01-10 03:16:08 +00:00
|
|
|
draft: false
|
|
|
|
enableToc: false
|
|
|
|
enableTocContent: false
|
2019-11-18 19:18:57 +00:00
|
|
|
tags:
|
|
|
|
-
|
|
|
|
series:
|
|
|
|
-
|
|
|
|
categories:
|
|
|
|
- diagram
|
|
|
|
libraries:
|
|
|
|
- msc
|
share button(telegram, whatsapp) added, some meta tags added, featured_image deprecated, xmpp, matrix icon added
share button(telegram, whatsapp) added, some meta tags added, featured_image deprecated, xmpp, matrix icon added
2020-01-31 18:51:37 +00:00
|
|
|
image: images/feature2/transfer.png
|
2019-11-18 19:18:57 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
```msc
|
|
|
|
Alice->Bob: Hello Bob, how are you?
|
|
|
|
Note right of Bob: Bob thinks
|
|
|
|
Bob-->Alice: I am good thanks!
|
|
|
|
```
|
|
|
|
|
|
|
|
```msc
|
|
|
|
Title: Here is a title
|
|
|
|
A->B: Normal line
|
|
|
|
B-->C: Dashed line
|
|
|
|
C->>D: Open arrow
|
|
|
|
D-->>A: Dashed open arrow
|
|
|
|
```
|