-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jl
47 lines (43 loc) · 1.36 KB
/
index.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using MultiDocumenter
clonedir = mktempdir()
docs = [
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "GEMPIC"),
path = "gempic",
name = "GEMPIC",
giturl = "https://github.com/JuliaVlasov/GEMPIC.jl.git",
),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "SemiLagrangian"),
path = "semilagrangian",
name = "SemiLagrangian",
giturl = "https://github.com/JuliaVlasov/SemiLagrangian.jl.git",
),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "VlasovSolvers"),
path = "vlasovsolvers",
name = "VlasovSolvers",
giturl = "https://github.com/JuliaVlasov/VlasovSolvers.jl.git",
),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "SpinGEMPIC"),
path = "scalarspin",
name = "SpinGEMPIC",
giturl = "https://github.com/JuliaVlasov/SpinGEMPIC.jl.git",
),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "VectorSpin"),
path = "vectorspin",
name = "VectorSpin",
giturl = "https://github.com/JuliaVlasov/VectorSpin.jl.git",
),
]
outpath = joinpath(@__DIR__, "out")
MultiDocumenter.make(
outpath,
docs;
search_engine = MultiDocumenter.SearchConfig(
index_versions = ["dev"],
engine = MultiDocumenter.FlexSearch
)
)