diff --git a/README.md b/README.md index fbee3df..98864f4 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,6 @@ The current design avoids populating your environment with unnecessary dependenc [GML]: https://en.wikipedia.org/wiki/Graph_Modelling_Language [Graph6]: https://users.cecs.anu.edu.au/~bdm/data/formats.html [GraphML]: https://en.wikipedia.org/wiki/GraphML -[Pajek NET]: https://gephi.org/users/supported-graph-formats/pajek-net-format/ -[GEXF]: https://gephi.org/gexf/format/ +[Pajek NET]: https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format +[GEXF]: https://docs.gephi.org/desktop/User_Manual/Import/GEXF_File_Format [DOT]: https://en.wikipedia.org/wiki/DOT_(graph_description_language) diff --git a/src/NET/Net.jl b/src/NET/Net.jl index 9db87b9..a0e2753 100644 --- a/src/NET/Net.jl +++ b/src/NET/Net.jl @@ -12,7 +12,7 @@ struct NETFormat <: AbstractGraphFormat end """ savenet(io, g, gname="g") -Write a graph `g` to an IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/) +Write a graph `g` to an IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format) format. Return 1 (number of graphs written). """ function savenet(io::IO, g::Graphs.AbstractGraph, gname::String="g") @@ -32,7 +32,7 @@ end """ loadnet(io::IO, gname="graph") -Read a graph from IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/) +Read a graph from IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format) format. Return the graph. """ function loadnet(io::IO, gname::String="graph")