Skip to content

Commit

Permalink
Tentative
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Oct 7, 2024
1 parent 91cf00d commit 20cc1ed
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/make-multi.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
using MultiDocumenter

for (root, dirs, files) in walkdir(".")
for file in files
filepath = joinpath(root, file)
if islink(filepath)
linktarget = abspath(dirname(filepath), readlink(filepath))
rm(filepath)
cp(linktarget, filepath; force=true)
end
end
end

docs = [
MultiDocumenter.MultiDocRef(
upstream = joinpath(dirname(@__DIR__),"GraphNeuralNetworks", "docs", "build"),
Expand Down Expand Up @@ -38,6 +49,7 @@ MultiDocumenter.make(
engine = MultiDocumenter.FlexSearch
),
brand_image = MultiDocumenter.BrandImage("", "logo.svg")
rootpath = "/GraphNeuralNetworks.jl/"
)

cp(joinpath(@__DIR__, "logo.svg"),
Expand Down

0 comments on commit 20cc1ed

Please sign in to comment.