Skip to content

Commit 77d8cf4

Browse files
authored
Merge pull request #76 from Lab-CA-SS26/fix-dead-links
Fix dead links from gephi.org
2 parents 4db6527 + be2120f commit 77d8cf4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ The current design avoids populating your environment with unnecessary dependenc
5353
[GML]: https://en.wikipedia.org/wiki/Graph_Modelling_Language
5454
[Graph6]: https://users.cecs.anu.edu.au/~bdm/data/formats.html
5555
[GraphML]: https://en.wikipedia.org/wiki/GraphML
56-
[Pajek NET]: https://gephi.org/users/supported-graph-formats/pajek-net-format/
57-
[GEXF]: https://gephi.org/gexf/format/
56+
[Pajek NET]: https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format
57+
[GEXF]: https://docs.gephi.org/desktop/User_Manual/Import/GEXF_File_Format
5858
[DOT]: https://en.wikipedia.org/wiki/DOT_(graph_description_language)

src/NET/Net.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct NETFormat <: AbstractGraphFormat end
1212
"""
1313
savenet(io, g, gname="g")
1414
15-
Write a graph `g` to an IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/)
15+
Write a graph `g` to an IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format)
1616
format. Return 1 (number of graphs written).
1717
"""
1818
function savenet(io::IO, g::Graphs.AbstractGraph, gname::String="g")
@@ -32,7 +32,7 @@ end
3232
"""
3333
loadnet(io::IO, gname="graph")
3434
35-
Read a graph from IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/)
35+
Read a graph from IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format)
3636
format. Return the graph.
3737
"""
3838
function loadnet(io::IO, gname::String="graph")

0 commit comments

Comments
 (0)