-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmake.jl
More file actions
30 lines (26 loc) · 805 Bytes
/
make.jl
File metadata and controls
30 lines (26 loc) · 805 Bytes
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
using Documenter
using DocumenterInterLinks
using SparseMatrixColorings
links = InterLinks(
"ADTypes" => "https://sciml.github.io/ADTypes.jl/stable/",
"BandedMatrices" => "https://julialinearalgebra.github.io/BandedMatrices.jl/stable/",
)
cp(joinpath(@__DIR__, "..", "README.md"), joinpath(@__DIR__, "src", "index.md"); force=true)
makedocs(;
modules=[SparseMatrixColorings],
authors="Guillaume Dalle and Alexis Montoison",
sitename="SparseMatrixColorings.jl",
format=Documenter.HTML(),
pages=[
"Home" => "index.md",
"tutorial.md",
"api.md",
"Developer Documentation" => ["dev.md", "vis.md"],
],
plugins=[links],
)
deploydocs(;
repo="github.com/JuliaDiff/SparseMatrixColorings.jl",
push_preview=true,
devbranch="main",
)