Merge pull request #1561 from pchaigno/graph-ml

Support for Graph Modeling Language
This commit is contained in:
Brandon Keepers
2014-09-26 14:34:39 -07:00
2 changed files with 27 additions and 0 deletions

View File

@@ -891,6 +891,12 @@ Grammatical Framework:
searchable: true
color: "#ff0000"
Graph Modeling Language:
type: data
lexer: Text only
extensions:
- .gml
Groff:
extensions:
- .man

View File

@@ -0,0 +1,21 @@
graph
[
directed 0
node
[
id 0
label "Node 1"
value 100
]
node
[
id 1
label "Node 2"
value 200
]
edge
[
source 1
target 0
]
]