31 lines
516 B
Markdown
31 lines
516 B
Markdown
---
|
|
title: "JS Sequence Diagram support"
|
|
date: 2019-11-18T12:00:06+09:00
|
|
description: "Generates UML sequence diagrams from simple text"
|
|
draft: false
|
|
enableToc: false
|
|
enableTocContent: false
|
|
tags:
|
|
-
|
|
series:
|
|
-
|
|
categories:
|
|
- diagram
|
|
libraries:
|
|
- msc
|
|
featured_image: "feature2/transfer.png"
|
|
---
|
|
|
|
```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
|
|
``` |