-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dong Gyun Kim
authored
Jul 15, 2018
1 parent
4e308e3
commit 2719f12
Showing
1 changed file
with
34 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,37 @@ | ||
1. [Introduction](#1-introduction) | ||
```mermaid | ||
sequenceDiagram | ||
Alice ->> Bob: Hello Bob, how are you? | ||
Bob-->>John: How about you John? | ||
Bob--x Alice: I am good thanks! | ||
Bob-x John: I am good thanks! | ||
Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row. | ||
2. [Target](#2-target) | ||
Bob-->Alice: Checking with John... | ||
Alice->John: Yes... John, how are you? | ||
``` | ||
|
||
3. [Research](#3-research) | ||
1. [Role Model](#31-role-model) | ||
2. [Crawling Possibility](#32-crawling-possibility) | ||
|
||
4. [Implement](#4-implement) | ||
```mermaid | ||
graph LR | ||
A[Square Rect] -- Link text --> B((Circle)) | ||
A --> C(Round Rect) | ||
B --> D{Rhombus} | ||
C --> D | ||
``` | ||
|
||
5. [Using Skills](#5-using-skills) | ||
|
||
6. [Side Service](#6-side-service) | ||
1. [PinkyShake](#61-pinkyshake) | ||
1. [Introduction](#611-introduction) | ||
2. [Target](#612-target) | ||
3. [Research](#613-research) | ||
4. [Implement](#614-implement) | ||
5. [Logo Design & Color Palette](#615-logo-design-color-palette) | ||
```mermaid | ||
gantt | ||
dateFormat YYYY-MM-DD | ||
title Adding GANTT diagram functionality to mermaid | ||
section A section | ||
Completed task :done, des1, 2014-01-06,2014-01-08 | ||
Active task :active, des2, 2014-01-09, 3d | ||
Future task : des3, after des2, 5d | ||
Future task2 : des4, after des3, 5d | ||
section Critical tasks | ||
Completed task in the critical line :crit, done, 2014-01-06,24h | ||
Implement parser and jison :crit, done, after des1, 2d | ||
Create tests for parser :crit, active, 3d | ||
Future task in critical line :crit, 5d | ||
Create tests for renderer :2d | ||
Add to mermaid :1d | ||
``` |