Destroyed Graph declarations with spaces between vertices and link and without semicolon (markdown)

knsv
2014-12-31 03:05:01 -08:00
parent 9b9398547b
commit ec4d82ba6b

@@ -1,13 +0,0 @@
* In graph declarations, the statements can now end without a semicolon also. After release 0.2.16, ending a graph statement with semicolon is just optional. So the below graph declaration is also valid along with the old declarations of the graph.
* A single space is allowed between a 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.
```
graph LR
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
```