-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmake.jl
More file actions
28 lines (24 loc) · 793 Bytes
/
make.jl
File metadata and controls
28 lines (24 loc) · 793 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
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/gdalle/SparseMatrixColorings.jl", push_preview=true, devbranch="main"
)