forked from SciML/ModelingToolkit.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
44 lines (42 loc) · 1.37 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
44
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/symbolic_functions.md",
"tutorials/ode_modeling.md",
"tutorials/higher_order.md",
"tutorials/nonlinear.md",
"tutorials/modelingtoolkitize.md",
"tutorials/auto_parallel.md",
"tutorials/converting_to_C.md"
],
"Systems" => Any[
"systems/AbstractSystem.md",
"systems/ODESystem.md",
"systems/SDESystem.md",
"systems/JumpSystem.md",
"systems/NonlinearSystem.md",
"systems/OptimizationSystem.md",
"systems/ControlSystem.md",
"systems/ReactionSystem.md",
"systems/PDESystem.md",
"systems/DependencyGraphs.md"
],
"Comparison Against SymPy" => "comparison.md",
"highlevel.md",
"build_function.md",
"IR.md"
]
)
deploydocs(
repo = "github.com/SciML/ModelingToolkit.jl.git";
push_preview = true
)