-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmake.jl
More file actions
26 lines (23 loc) · 740 Bytes
/
make.jl
File metadata and controls
26 lines (23 loc) · 740 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
using Documenter, ExtendableSparse, AlgebraicMultigrid, IncompleteLU, Sparspak, LinearAlgebra, SparseArrays, Base, InteractiveUtils
function mkdocs()
return makedocs(;
sitename = "ExtendableSparse.jl",
modules = [ExtendableSparse],
doctest = false,
warnonly = true,
clean = false,
authors = "J. Fuhrmann",
repo = "https://github.com/WIAS-PDELib/ExtendableSparse.jl",
pages = [
"Home" => "home.md",
"example.md",
"extsparse.md",
"extensions.md",
"linearsolve.md",
"misc.md",
"index.md",
]
)
end
mkdocs()
deploydocs(; repo = "github.com/WIAS-PDELib/ExtendableSparse.jl.git")