diff --git a/docs/network/index.html b/docs/network/index.html
index 176e9fea..5c4228db 100644
--- a/docs/network/index.html
+++ b/docs/network/index.html
@@ -247,10 +247,7 @@
targetNode="eventsDiv">Events
-
- Network supports data in the
- DOT language.
- To use data in the DOT language, you can use the vis.network.convertDot converter to transform the DOT
- language
- into a vis.Network compatible nodes, edges and options objects. You can extend the options object with other
- options if you'd like.
-
-
-
- Example usage:
-
-
-
-// provide data in the DOT language
-var DOTstring = 'dinetwork {1 -> 1 -> 2; 2 -> 3; 2 -- 4; 2 -> 1 }';
-var parsedData = vis.network.convertDot(DOTstring);
-var data = {
- nodes: parsedData.nodes,
- edges: parsedData.edges
-}
+
-var options = parsedData.options;
+
Network contains conversion utilities to import data from Gephi and graphs in the DOT language.
-// you can extend the options like a normal JSON variable:
-options.nodes = {
- color: 'red'
-}
+
Import data from Gephi
-// create a network
-var network = new vis.Network(container, data, options);
-
-
-
Network can import data straight from an exported json file from gephi. You can get the JSON exporter here:
https://marketplace.gephi.org/plugin/json-exporter/.
@@ -1530,8 +1498,45 @@ var network = new vis.Network(container, data);
+
+
Import data in DOT language
+
+
+ Network supports data in the
+ DOT language.
+ To use data in the DOT language, you can use the vis.network.convertDot converter to transform the DOT
+ language
+ into a vis.Network compatible nodes, edges and options objects. You can extend the options object with other
+ options if you'd like.
+
+
+
+ Example usage:
+
+
+
+// provide data in the DOT language
+var DOTstring = 'dinetwork {1 -> 1 -> 2; 2 -> 3; 2 -- 4; 2 -> 1 }';
+var parsedData = vis.network.convertDot(DOTstring);
+
+var data = {
+ nodes: parsedData.nodes,
+ edges: parsedData.edges
+}
+
+var options = parsedData.options;
+
+// you can extend the options like a normal JSON variable:
+options.nodes = {
+ color: 'red'
+}
+
+// create a network
+var network = new vis.Network(container, data, options);
+
+