mermaid/docs/content/index.md

82 lines
2.8 KiB
Markdown
Raw Normal View History

2015-09-24 08:04:06 +02:00
---
order: 0
---
2015-07-03 08:52:01 +02:00
mermaid
=======
2015-09-24 08:04:06 +02:00
![Alt text](images/header.png)
2015-07-03 08:52:01 +02:00
2015-09-24 08:04:06 +02:00
>Generation of diagrams and flowcharts from text in a similar manner as markdown.
2015-07-03 08:52:01 +02:00
Ever wanted to simplify documentation and avoid heavy tools like Visio when explaining your code?
This is why mermaid was born, a simple markdown-like script language for generating charts from text via javascript. [Try it using our editor](http://knsv.github.io/mermaid/live_editor).
2015-09-24 08:04:06 +02:00
Code examples below:
2015-09-26 18:30:13 +02:00
### An example of a flowchart
2015-07-03 08:52:01 +02:00
```
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
2015-09-26 18:30:13 +02:00
### An example of a sequence diagram
2015-07-03 08:52:01 +02:00
```
sequenceDiagram
participant Alice
participant Bob
Alice->John: Hello John, how are you?
loop Healthcheck
John->John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail...
John-->Alice: Great!
John->Bob: How about you?
Bob-->John: Jolly good!
```
2015-09-26 18:30:13 +02:00
### Example code for a gantt diagram
2015-07-03 08:52:01 +02:00
```
2015-09-24 08:04:06 +02:00
gantt
2015-07-03 08:52:01 +02:00
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
```
2015-09-24 08:04:06 +02:00
Play with mermaid using this [editor](http://danielmschmidt.github.io/mermaid-demo/) or this [live editor](live_editor).
2015-07-03 08:52:01 +02:00
## Further reading
2015-09-24 08:04:06 +02:00
* [Usage](http://knsv.github.io/mermaid/index.html#usage)
* [Flowchart syntax](http://knsv.github.io/mermaid/index.html#flowcharts-basic-syntax)
* [Sequence diagram syntax](http://knsv.github.io/mermaid/index.html#sequence-diagrams)
* [Gantt chart syntax](http://knsv.github.io/mermaid/index.html#gant-diagrams)
* [Mermaid client](http://knsv.github.io/mermaid/index.html#flowcharts-basic-syntax)
2015-07-03 08:52:01 +02:00
* [Editor](http://knsv.github.io/mermaid/live_editor)
2015-09-24 08:04:06 +02:00
## Credits
2015-07-03 08:52:01 +02:00
Many thanks to the [d3](http://d3js.org/) and [dagre-d3](https://github.com/cpettitt/dagre-d3) projects for providing
the graphical layout and drawing libraries! Thanks also to the
[js-sequence-diagram](http://bramp.github.io/js-sequence-diagrams) project for usage of the grammar for the
sequence diagrams.
*Mermaid was created by Knut Sveidqvist for easier documentation.*
Knut has not done all work by himself, here is the full list of the projects [contributors](https://github.com/knsv/mermaid/graphs/contributors).