forked from SciML/ModelingToolkit.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
41 lines (39 loc) · 1.24 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
using Documenter, ModelingToolkit
makedocs(
sitename="ModelingToolkit.jl",
authors="Chris Rackauckas",
modules=[ModelingToolkit],
clean=true,doctest=false,
format = Documenter.HTML(#analytics = "UA-90474609-3",
assets = ["assets/favicon.ico"],
canonical="https://mtk.sciml.ai/stable/"),
pages=[
"Home" => "index.md",
"Tutorials" => Any[
"tutorials/ode_modeling.md",
"tutorials/higher_order.md",
"tutorials/nonlinear.md",
"tutorials/modelingtoolkitize.md",
],
"Basics" => Any[
"basics/AbstractSystem.md",
"basics/ContextualVariables.md",
"basics/Validation.md",
"basics/DependencyGraphs.md"
],
"Systems Types" => Any[
"systems/ODESystem.md",
"systems/SDESystem.md",
"systems/JumpSystem.md",
"systems/NonlinearSystem.md",
"systems/OptimizationSystem.md",
"systems/ControlSystem.md",
"systems/ReactionSystem.md",
"systems/PDESystem.md",
]
]
)
deploydocs(
repo = "github.com/SciML/ModelingToolkit.jl.git";
push_preview = true
)