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