mermaid/todo.md

30 lines
565 B
Markdown
Raw Normal View History

2017-04-22 17:10:37 +08:00
- Get familar with jison
2017-06-02 14:42:04 +08:00
- git graph requires a blank line at the end. why?
2017-12-20 22:02:21 +08:00
- Create a desktop client
2018-03-17 23:05:14 +08:00
- Replace all `lineInterpolate` with `curve`
2018-03-17 09:10:10 +08:00
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"
}
]
}
```