Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update flowchart.md in response Issue #113 #114

Merged
merged 1 commit into from
Jan 31, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions docs/flowchart.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,6 @@ Currently only the shape above is possible and not its mirror. *This might chang
id1{This is the text in the box}
```

```
graph LR
id1{This is the text in the box}
```
### A node (rhombus)
```
id1{This is the text in the box}
```

```
graph LR
id1{This is the text in the box}
Expand Down Expand Up @@ -289,7 +280,15 @@ If a class is named default it will be assigned to all classes without specific

* A single space is allowed between vertices and the link. However there should not be any space between a vertex and its text and a link and its text. The old syntax of graph declaration will also work and hence this new feature is optional and is introduce to improve readability.

Below is the new declaration of the graph which is also valid along with the old declaration of the graph as described in the graph example on the home wiki page.
Below is the new declaration of the graph edges which is also valid along with the old declaration of the graph edges.

```
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
```


```
graph LR
Expand Down