forked from mermaid-js/mermaid
-
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
Showing
1 changed file
with
1 addition
and
26 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,29 +1,4 @@ | ||
- Get familar with jison | ||
- git graph requires a blank line at the end. why? | ||
- Create a desktop client | ||
- Replace all `lineInterpolate` with `curve` | ||
|
||
I have the feeling that the flowchart DSL is not very readable or expressive despite it is short. | ||
And it is too limited for complicated requirements such as: https://github.com/knsv/mermaid/issues/592 | ||
|
||
Maybe the following is better: | ||
|
||
```json | ||
{ | ||
"nodes": [ | ||
{ | ||
"name": "A" | ||
} | ||
{ | ||
"name": "B" | ||
} | ||
], | ||
"edges": [ | ||
{ | ||
"from": "A", | ||
"to": "B", | ||
"style": "dashed" | ||
} | ||
] | ||
} | ||
``` | ||
- Do the rendering in an iframe to avoid global CSS to affect rendering. |