mermaid/todo.md

30 lines
565 B
Markdown
Raw Normal View History

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