forked from gridap/Gridap.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
43 lines (39 loc) · 1.05 KB
/
make.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
using Documenter
using Gridap
pages = [
"Home" => "index.md",
"Getting Started" => "getting-started.md",
"Gridap" => "Gridap.md",
"Gridap.Helpers" => "Helpers.md",
"Gridap.Io" => "Io.md",
"Gridap.Algebra" => "Algebra.md",
"Gridap.Arrays" => "Arrays.md",
"Gridap.TensorValues" => "TensorValues.md",
"Gridap.Fields" => "Fields.md",
"Gridap.Polynomials" => "Polynomials.md",
"Gridap.ReferenceFEs" => "ReferenceFEs.md",
"Gridap.Geometry" => "Geometry.md",
"Gridap.CellData" => "CellData.md",
"Gridap.Visualization" => "Visualization.md",
"Gridap.FESpaces" => "FESpaces.md",
"Gridap.MultiField" => "MultiField.md",
"Gridap.ODEs" => "ODEs.md",
"Gridap.Adaptivity" => "Adaptivity.md",
"Developper notes" => Any[
"dev-notes/block-assemblers.md",
],
]
makedocs(
sitename = "Gridap.jl",
format = Documenter.HTML(
size_threshold=nothing
),
modules = [Gridap],
pages = pages,
doctest = false,
warnonly = [:cross_references,:missing_docs],
checkdocs = :exports,
)
deploydocs(
repo = "github.com/gridap/Gridap.jl.git",
)