-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmake.jl
More file actions
25 lines (21 loc) · 712 Bytes
/
make.jl
File metadata and controls
25 lines (21 loc) · 712 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
using Documenter
using DocumenterInterLinks
using SparseMatrixColorings
links = InterLinks("ADTypes" => "https://sciml.github.io/ADTypes.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",
"api.md",
"Tutorials" => "tutorials.md",
"Developer Documentation" => ["dev.md", "vis.md"],
],
plugins=[links],
)
deploydocs(;
repo="github.com/gdalle/SparseMatrixColorings.jl", push_preview=true, devbranch="main"
)