Skip to content

Commit

Permalink
Change path
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Oct 7, 2024
1 parent 78744f2 commit 91cf00d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion GNNlib/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mathengine = MathJax3()

interlinks = InterLinks(
"NNlib" => "https://fluxml.ai/NNlib.jl/stable/",
"GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/gnngraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")))
"GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/GNNGraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")))


makedocs(;
Expand Down
4 changes: 2 additions & 2 deletions GraphNeuralNetworks/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ mathengine = MathJax3()

interlinks = InterLinks(
"NNlib" => "https://fluxml.ai/NNlib.jl/stable/",
"GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/gnngraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")),
"GNNlib" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/gnnlib/", joinpath(dirname(dirname(@__DIR__)), "GNNlib", "docs", "build", "objects.inv"))
"GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/GNNGraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")),
"GNNlib" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/GNNlib/", joinpath(dirname(dirname(@__DIR__)), "GNNlib", "docs", "build", "objects.inv"))

)

Expand Down
10 changes: 5 additions & 5 deletions docs/make-multi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@ using MultiDocumenter
docs = [
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__),"GraphNeuralNetworks", "docs", "build"),
path = "graphneuralnetworks",
path = "GraphNeuralNetworks",
name = "GraphNeuralNetworks",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__), "GNNGraphs", "docs", "build"),
path = "gnngraphs",
path = "GNNGraphs",
name = "GNNGraphs",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__), "GNNlib", "docs", "build"),
path = "gnnlib",
path = "GNNlib",
name = "GNNlib",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__), "GNNLux", "docs", "build"),
path = "gnnlux",
path = "GNNLux",
name = "GNNLux",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__), "tutorials", "docs", "build"),
path = "tutorials",
name = "Tutorials",
name = "tutorials",
fix_canonical_url = false),
]

Expand Down
4 changes: 2 additions & 2 deletions tutorials/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ mathengine = MathJax3()

# interlinks = InterLinks(
# "NNlib" => "https://fluxml.ai/NNlib.jl/stable/",
# "GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/gnngraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")),
# "GraphNeuralNetworks" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/graphneuralnetworks/", joinpath(dirname(dirname(@__DIR__)), "docs", "build", "objects.inv")),)
# "GNNGraphs" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/GNNGraphs/", joinpath(dirname(dirname(@__DIR__)), "GNNGraphs", "docs", "build", "objects.inv")),
# "GraphNeuralNetworks" => ("https://carlolucibello.github.io/GraphNeuralNetworks.jl/GraphNeuralNetworks/", joinpath(dirname(dirname(@__DIR__)), "docs", "build", "objects.inv")),)

makedocs(;
doctest = false,
Expand Down

0 comments on commit 91cf00d

Please sign in to comment.