Updated Flow Format (markdown)

Nick O'Leary 2014-08-27 02:10:50 -07:00
parent a64f7cb062
commit b5e24dd83f
1 changed files with 6 additions and 6 deletions

@ -1,19 +1,19 @@
### node-id
![](../images/flow-format/node-id.png)
![](images/flow-format/node-id.png)
node-id ::= [0-9a-fA-F.]+
### wire-entry
![](../images/flow-format/wire-entry.png)
![](images/flow-format/wire-entry.png)
wire-entry ::= node-id
| "[" node-id ( "," node-id )* "]"
### core-properties
![](../images/flow-format/core-properties.png)
![](images/flow-format/core-properties.png)
core-properties
::= "id" ":" node-id
@ -25,20 +25,20 @@
### type-properties
![](../images/flow-format/type-properties.png)
![](images/flow-format/type-properties.png)
type-properties ::= string ":" value
### node
![](../images/flow-format/node.png)
![](images/flow-format/node.png)
node ::= "{" core-properties ( "," core-properties )* ( "," type-properties )* "}"
### flow
![](../images/flow-format/flow.png)
![](images/flow-format/flow.png)
flow ::= "[" node ( "," node )* "]"